Package com.saperion.wf
Class AttachmentInfoImpl
- java.lang.Object
-
- com.saperion.wf.WorkflowDataHolder
-
- com.saperion.wf.AttachmentInfoImpl
-
- All Implemented Interfaces:
AttachmentInfo
,java.io.Serializable
public final class AttachmentInfoImpl extends WorkflowDataHolder implements AttachmentInfo
Attachment info class.- Author:
- rbo
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AttachmentInfoImpl(java.util.Map<java.lang.String,java.lang.Object> propertyMap)
Constructor from property map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDefinition()
java.lang.String
getDocUID()
java.lang.String
getSysRowId()
void
setDocUID(java.lang.String uid)
Sets the document UID.void
writeXML(org.xml.sax.ContentHandler hd, java.lang.String partName)
Writes data as xml part.-
Methods inherited from class com.saperion.wf.WorkflowDataHolder
getDateValue, getIntValue, getStringValue
-
-
-
-
Method Detail
-
writeXML
public void writeXML(org.xml.sax.ContentHandler hd, java.lang.String partName) throws org.xml.sax.SAXException
Writes data as xml part.- Parameters:
hd
- Content handlerpartName
- Part name- Throws:
org.xml.sax.SAXException
- Exception
-
getDocUID
public java.lang.String getDocUID()
- Specified by:
getDocUID
in interfaceAttachmentInfo
- Returns:
- the docUID
- See Also:
AttachmentInfo.getDocUID()
-
setDocUID
public void setDocUID(java.lang.String uid)
Sets the document UID.- Parameters:
uid
- Document UID
-
getDefinition
public java.lang.String getDefinition()
- Specified by:
getDefinition
in interfaceAttachmentInfo
- Returns:
- the definition
- See Also:
AttachmentInfo.getDefinition()
-
getSysRowId
public java.lang.String getSysRowId()
- Specified by:
getSysRowId
in interfaceAttachmentInfo
- Returns:
- the sysRowId
- See Also:
AttachmentInfo.getSysRowId()
-
-