Package com.priint.pubserver.pubitem
Class PublicationItemRightsFacade.PublicationItemRightsForTeam
- java.lang.Object
-
- com.priint.pubserver.pubitem.PublicationItemRightsFacade.PublicationItemRightsForUsers
-
- com.priint.pubserver.pubitem.PublicationItemRightsFacade.PublicationItemRightsForTeam
-
- Enclosing interface:
- PublicationItemRightsFacade
public static final class PublicationItemRightsFacade.PublicationItemRightsForTeam extends PublicationItemRightsFacade.PublicationItemRightsForUsers
The class PublicationItemRightsForTeam represents the rights for a team on a publication item. It extends the PublicationItemRightsForUsers class.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilderThe class PublicationItemRightsForTeamBuilder is a builder class used to create instances of the PublicationItemRightsForTeam class.
-
Field Summary
-
Fields inherited from class com.priint.pubserver.pubitem.PublicationItemRightsFacade.PublicationItemRightsForUsers
publicationItemId, rights
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilderbuilder()The class PublicationItemRightsForTeamBuilder is a builder class used to create instances of the PublicationItemRightsForTeam class.booleanequals(java.lang.Object o)java.lang.StringgetTeamId()Retrieves the team ID associated with the rights for a team on a publication item.inthashCode()java.lang.StringtoString()-
Methods inherited from class com.priint.pubserver.pubitem.PublicationItemRightsFacade.PublicationItemRightsForUsers
getPublicationItemId, getRights
-
-
-
-
Method Detail
-
getTeamId
public java.lang.String getTeamId()
Retrieves the team ID associated with the rights for a team on a publication item.- Returns:
- the team ID
-
builder
public static PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilder builder()
The class PublicationItemRightsForTeamBuilder is a builder class used to create instances of the PublicationItemRightsForTeam class. This builder provides methods to set the required parameters for creating an instance of PublicationItemRightsForTeam. Usage example: PublicationItemRightsForTeam rights = PublicationItemRightsForTeam.builder() .publicationItemId(publicationItemId) .rights(rights) .teamId(teamId) .build();- Returns:
- A new instance of PublicationItemRightsForTeamBuilder.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classPublicationItemRightsFacade.PublicationItemRightsForUsers
-
hashCode
public int hashCode()
- Overrides:
hashCodein classPublicationItemRightsFacade.PublicationItemRightsForUsers
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-