Package com.priint.pubserver.pubitem
Class PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilder
- java.lang.Object
-
- com.priint.pubserver.pubitem.PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilder
-
- Enclosing class:
- PublicationItemRightsFacade.PublicationItemRightsForTeam
public static class PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilder extends java.lang.ObjectThe 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. Example Usage: PublicationItemRightsForTeam rights = PublicationItemRightsForTeam.builder() .publicationItemId(publicationItemId) .rights(rights) .teamId(teamId) .build();
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PublicationItemRightsFacade.PublicationItemRightsForTeambuild()Builds a new instance of PublicationItemRightsForTeam using the provided parameters.PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilderpublicationItemId(PubItem.Id publicationItemId)Sets the publication item ID for the PublicationItemRightsForTeamBuilder.PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilderrights(PubItem.Rights rights)Sets the rights for the PublicationItemRightsForTeamBuilder.PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilderteamId(java.lang.String teamId)Sets the team ID for the PublicationItemRightsForTeamBuilder.java.lang.StringtoString()
-
-
-
Method Detail
-
publicationItemId
public PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilder publicationItemId(PubItem.Id publicationItemId)
Sets the publication item ID for the PublicationItemRightsForTeamBuilder.- Parameters:
publicationItemId- The publication item ID to be set.- Returns:
- The PublicationItemRightsForTeamBuilder instance.
-
rights
public PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilder rights(PubItem.Rights rights)
Sets the rights for the PublicationItemRightsForTeamBuilder.- Parameters:
rights- The rights object to be set.- Returns:
- The PublicationItemRightsForTeamBuilder instance.
-
teamId
public PublicationItemRightsFacade.PublicationItemRightsForTeam.PublicationItemRightsForTeamBuilder teamId(java.lang.String teamId)
Sets the team ID for the PublicationItemRightsForTeamBuilder.- Parameters:
teamId- The team ID to be set.- Returns:
- The PublicationItemRightsForTeamBuilder instance.
-
build
public PublicationItemRightsFacade.PublicationItemRightsForTeam build()
Builds a new instance of PublicationItemRightsForTeam using the provided parameters.- Returns:
- A new instance of PublicationItemRightsForTeam.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-