forked from apolloconfig/apollo
-
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.
Add OpenAPI to get application information (/apps)
- Loading branch information
1 parent
21e76b3
commit 1361ed2
Showing
5 changed files
with
176 additions
and
14 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
81 changes: 81 additions & 0 deletions
81
apollo-openapi/src/main/java/com/ctrip/framework/apollo/openapi/dto/OpenAppDTO.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,81 @@ | ||
package com.ctrip.framework.apollo.openapi.dto; | ||
|
||
public class OpenAppDTO extends BaseDTO { | ||
|
||
private String name; | ||
|
||
private String appId; | ||
|
||
private String orgId; | ||
|
||
private String orgName; | ||
|
||
private String ownerName; | ||
|
||
private String ownerEmail; | ||
|
||
public String getAppId() { | ||
return appId; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public String getOrgId() { | ||
return orgId; | ||
} | ||
|
||
public String getOrgName() { | ||
return orgName; | ||
} | ||
|
||
public String getOwnerEmail() { | ||
return ownerEmail; | ||
} | ||
|
||
public String getOwnerName() { | ||
return ownerName; | ||
} | ||
|
||
public void setAppId(String appId) { | ||
this.appId = appId; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public void setOrgId(String orgId) { | ||
this.orgId = orgId; | ||
} | ||
|
||
public void setOrgName(String orgName) { | ||
this.orgName = orgName; | ||
} | ||
|
||
public void setOwnerEmail(String ownerEmail) { | ||
this.ownerEmail = ownerEmail; | ||
} | ||
|
||
public void setOwnerName(String ownerName) { | ||
this.ownerName = ownerName; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
final StringBuilder sb = new StringBuilder("OpenAppDTO{"); | ||
sb.append("name='").append(name).append('\''); | ||
sb.append(", appId='").append(appId).append('\''); | ||
sb.append(", orgId='").append(orgId).append('\''); | ||
sb.append(", orgName='").append(orgName).append('\''); | ||
sb.append(", ownerName='").append(ownerName).append('\''); | ||
sb.append(", ownerEmail='").append(ownerEmail).append('\''); | ||
sb.append(", dataChangeCreatedBy='").append(dataChangeCreatedBy).append('\''); | ||
sb.append(", dataChangeLastModifiedBy='").append(dataChangeLastModifiedBy).append('\''); | ||
sb.append(", dataChangeCreatedTime=").append(dataChangeCreatedTime); | ||
sb.append(", dataChangeLastModifiedTime=").append(dataChangeLastModifiedTime); | ||
sb.append('}'); | ||
return sb.toString(); | ||
} | ||
} |
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