Class DocumentIdentifier
- java.lang.Object
-
- com.priint.pubserver.comet.bridge.toc.DocumentIdentifier
-
- All Implemented Interfaces:
java.io.Serializable
public class DocumentIdentifier extends java.lang.Object implements java.io.SerializableThe Class DocumentIdentifier.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DocumentIdentifier()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DocumentIdentifiercreateDocumentIdentifier(java.lang.String document, java.lang.String path)Creates the document identifier.static DocumentIdentifiercreateDocumentIdentifier(java.lang.String document, java.lang.String path, java.lang.String publication)Creates the document identifier.static DocumentIdentifiercreatePublicationPlannerIdentifier(java.lang.String publicationPlannerId)Creates the publication planner identifier.java.lang.StringgetDocument()Gets the document.java.lang.StringgetPath()Gets the path.java.lang.StringgetPublication()Gets the publication.java.lang.StringgetPublicationPlannerId()Gets the publication planner id.voidsetDocument(java.lang.String document)Sets the document.voidsetPath(java.lang.String path)Sets the path.voidsetPublication(java.lang.String publication)Sets the publication.voidsetPublicationPlannerId(java.lang.String publicationPlannerId)Sets the publication planner id.
-
-
-
Method Detail
-
createPublicationPlannerIdentifier
public static DocumentIdentifier createPublicationPlannerIdentifier(java.lang.String publicationPlannerId)
Creates the publication planner identifier.- Parameters:
publicationPlannerId- the publication planner id- Returns:
- the document identifier
-
createDocumentIdentifier
public static DocumentIdentifier createDocumentIdentifier(java.lang.String document, java.lang.String path, java.lang.String publication)
Creates the document identifier.- Parameters:
document- the documentpath- the pathpublication- the publication- Returns:
- the document identifier
-
createDocumentIdentifier
public static DocumentIdentifier createDocumentIdentifier(java.lang.String document, java.lang.String path)
Creates the document identifier.- Parameters:
document- the documentpath- the path- Returns:
- the document identifier
-
getDocument
public java.lang.String getDocument()
Gets the document.- Returns:
- the document
-
setDocument
public void setDocument(java.lang.String document)
Sets the document.- Parameters:
document- the new document
-
getPath
public java.lang.String getPath()
Gets the path.- Returns:
- the path
-
setPath
public void setPath(java.lang.String path)
Sets the path.- Parameters:
path- the new path
-
getPublication
public java.lang.String getPublication()
Gets the publication.- Returns:
- the publication
-
setPublication
public void setPublication(java.lang.String publication)
Sets the publication.- Parameters:
publication- the new publication
-
getPublicationPlannerId
public java.lang.String getPublicationPlannerId()
Gets the publication planner id.- Returns:
- the publication planner id
-
setPublicationPlannerId
public void setPublicationPlannerId(java.lang.String publicationPlannerId)
Sets the publication planner id.- Parameters:
publicationPlannerId- the new publication planner id
-
-