Class GeneratorImpl
- java.lang.Object
-
- com.priint.pubserver.metadata.xml.GeneratorImpl
-
- All Implemented Interfaces:
Generator,java.io.Serializable
public class GeneratorImpl extends java.lang.Object implements java.io.Serializable, Generator
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GeneratorImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCopiedFromId()Gets the original document Id of this meta data archive.java.lang.StringgetCopiedFromPath()Gets the original document path of this meta data archive.java.util.DategetDate()Gets the creation date of this meta data archive.java.lang.StringgetName()Gets the name of the generator.java.lang.StringgetPlatform()Gets the name of the platform.voidsetCopiedFromId(java.lang.String copiedFromId)Sets the original document Id of this meta data archive.voidsetCopiedFromPath(java.lang.String copiedFromPath)Sets the original document path of this meta data archive.voidsetDate(java.util.Date date)Sets the creation date of this meta data archive.voidsetName(java.lang.String name)Sets the name of the generator.voidsetPlatform(java.lang.String platform)Sets the name of the platform.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:GeneratorGets the name of the generator.
Gets the name of the generator of this meta data archive, e.g. priint:PDF Renderer
-
setName
public void setName(java.lang.String name)
Description copied from interface:GeneratorSets the name of the generator.
Sets the name of the generator of this meta data archive.
-
getPlatform
public java.lang.String getPlatform()
Description copied from interface:GeneratorGets the name of the platform.
Gets the name of the platform, this meta data archive was generated on, e.g. MacOS.
- Specified by:
getPlatformin interfaceGenerator- Returns:
- name of the platform
-
setPlatform
public void setPlatform(java.lang.String platform)
Description copied from interface:GeneratorSets the name of the platform.
Sets the name of the platform, this meta data archive was generated on
- Specified by:
setPlatformin interfaceGenerator- Parameters:
platform- name of the platform
-
getDate
public java.util.Date getDate()
Description copied from interface:GeneratorGets the creation date of this meta data archive.
Gets the date, this meta data archive was created.
-
setDate
public void setDate(java.util.Date date)
Description copied from interface:GeneratorSets the creation date of this meta data archive.
Sets the date, this meta data archive was created.
-
getCopiedFromId
public java.lang.String getCopiedFromId()
Description copied from interface:GeneratorGets the original document Id of this meta data archive.
Gets the original document Id of this meta data archive.
If the meta data archive has been copied (e.g. when duplicating a document), this is the Id of the document, this meta data archive was originally associated to.- Specified by:
getCopiedFromIdin interfaceGenerator- Returns:
- Id of the original document
-
setCopiedFromId
public void setCopiedFromId(java.lang.String copiedFromId)
Description copied from interface:GeneratorSets the original document Id of this meta data archive.
Sets the original document Id of this meta data archive.
If the meta data archive has been copied (e.g. when duplicating a document), this should be set to the Id of the document, this meta data archive was originally associated to.- Specified by:
setCopiedFromIdin interfaceGenerator- Parameters:
copiedFromId- Id of the original document
-
getCopiedFromPath
public java.lang.String getCopiedFromPath()
Description copied from interface:GeneratorGets the original document path of this meta data archive.
Gets the original document path of this meta data archive.
If the meta data archive has been copied (e.g. when duplicating a document), this is the path of the document, this meta data archive was originally associated to.- Specified by:
getCopiedFromPathin interfaceGenerator- Returns:
- path of the original document
-
setCopiedFromPath
public void setCopiedFromPath(java.lang.String copiedFromPath)
Description copied from interface:GeneratorSets the original document path of this meta data archive.
Sets the original document path of this meta data archive.
If the meta data archive has been copied (e.g. when duplicating a document), this should be set to the path of the document, this meta data archive was originally associated to.- Specified by:
setCopiedFromPathin interfaceGenerator- Parameters:
copiedFromPath- path of the original document
-
-