-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: mshneorson <[email protected]>
- Loading branch information
mshneorson
committed
Aug 15, 2022
1 parent
2be02d0
commit 273ce6e
Showing
8 changed files
with
659 additions
and
0 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
57 changes: 57 additions & 0 deletions
57
servers/zms/src/main/java/com/yahoo/athenz/zms/purge/PurgeMember.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,57 @@ | ||
package com.yahoo.athenz.zms.purge; | ||
|
||
public class PurgeMember { | ||
private String domainName; | ||
private int collectionId; | ||
private String collectionName; | ||
private int principalId; | ||
private String principalName; | ||
|
||
public PurgeMember() { | ||
} | ||
|
||
public String getDomainName() { | ||
return domainName; | ||
} | ||
|
||
public PurgeMember setDomainName(String domainName) { | ||
this.domainName = domainName; | ||
return this; | ||
} | ||
|
||
public int getCollectionId() { | ||
return collectionId; | ||
} | ||
|
||
public PurgeMember setCollectionId(int collectionId) { | ||
this.collectionId = collectionId; | ||
return this; | ||
} | ||
|
||
public String getCollectionName() { | ||
return collectionName; | ||
} | ||
|
||
public PurgeMember setCollectionName(String collectionName) { | ||
this.collectionName = collectionName; | ||
return this; | ||
} | ||
|
||
public int getPrincipalId() { | ||
return principalId; | ||
} | ||
|
||
public PurgeMember setPrincipalId(int principalId) { | ||
this.principalId = principalId; | ||
return this; | ||
} | ||
|
||
public String getPrincipalName() { | ||
return principalName; | ||
} | ||
|
||
public PurgeMember setPrincipalName(String principalName) { | ||
this.principalName = principalName; | ||
return this; | ||
} | ||
} |
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
Oops, something went wrong.