forked from wso2/carbon-apimgt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'org_visibility_temp' into master-temp
- Loading branch information
Showing
105 changed files
with
4,639 additions
and
241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
...arbon.apimgt.api/src/main/java/org/wso2/carbon/apimgt/api/dto/OrganizationDetailsDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/* | ||
* Copyright (c) 2025, WSO2 LLc. (http://www.wso2.org) All Rights Reserved. | ||
* | ||
* WSO2 LLc. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* you may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.wso2.carbon.apimgt.api.dto; | ||
|
||
public class OrganizationDetailsDTO { | ||
|
||
private String organizationId; | ||
private String parentOrganizationId; | ||
private String externalOrganizationReference; | ||
private String Name; | ||
private String tenantDomain; | ||
private String description; | ||
private String organizationHandle; | ||
|
||
public String getOrganizationId() { | ||
return organizationId; | ||
} | ||
|
||
public void setOrganizationId(String organizationId) { | ||
this.organizationId = organizationId; | ||
} | ||
|
||
public String getParentOrganizationId() { | ||
return parentOrganizationId; | ||
} | ||
|
||
public void setParentOrganizationId(String parentOrganizationId) { | ||
this.parentOrganizationId = parentOrganizationId; | ||
} | ||
|
||
public String getName() { | ||
return Name; | ||
} | ||
|
||
public void setName(String name) { | ||
Name = name; | ||
} | ||
|
||
public String getTenantDomain() { | ||
return tenantDomain; | ||
} | ||
|
||
public void setTenantDomain(String tenantDomain) { | ||
this.tenantDomain = tenantDomain; | ||
} | ||
|
||
public String getDescription() { | ||
return description; | ||
} | ||
|
||
public void setDescription(String description) { | ||
this.description = description; | ||
} | ||
|
||
public String getExternalOrganizationReference() { | ||
return externalOrganizationReference; | ||
} | ||
|
||
public void setExternalOrganizationReference(String externalOrganizationReference) { | ||
this.externalOrganizationReference = externalOrganizationReference; | ||
} | ||
|
||
public String getOrganizationHandle() { | ||
return organizationHandle; | ||
} | ||
|
||
public void setOrganizationHandle(String organizationHandle) { | ||
this.organizationHandle = organizationHandle; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "OrganizationDetailsDTO [organizationId=" + organizationId + ", parentOrganizationId=" | ||
+ parentOrganizationId + ", externalOrganizationReference=" + externalOrganizationReference + ", Name=" | ||
+ Name + ", tenantDomain=" + tenantDomain + ", description=" + description + ", organizationHandle=" | ||
+ organizationHandle + "]"; | ||
} | ||
|
||
|
||
} |
Oops, something went wrong.