Class BaseSignTask
- java.lang.Object
-
- org.certificateservices.messages.signrequest.jaxb.BaseSignTask
-
- Direct Known Subclasses:
SignRequestTask,SignResponseTask
public abstract class BaseSignTask extends java.lang.ObjectJava class for BaseSignTask complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="BaseSignTask"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="signTaskId" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/> <element name="signType" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/> <element name="keyId" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/> <element name="attributes" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="attribute" type="{http://certificateservices.org/xsd/csmessages2_0}Attribute" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBaseSignTask.AttributesJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected BaseSignTask.Attributesattributesprotected java.lang.StringkeyIdprotected java.lang.StringsignTaskIdprotected java.lang.StringsignType
-
Constructor Summary
Constructors Constructor Description BaseSignTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BaseSignTask.AttributesgetAttributes()Gets the value of the attributes property.java.lang.StringgetKeyId()Gets the value of the keyId property.java.lang.StringgetSignTaskId()Gets the value of the signTaskId property.java.lang.StringgetSignType()Gets the value of the signType property.voidsetAttributes(BaseSignTask.Attributes value)Sets the value of the attributes property.voidsetKeyId(java.lang.String value)Sets the value of the keyId property.voidsetSignTaskId(java.lang.String value)Sets the value of the signTaskId property.voidsetSignType(java.lang.String value)Sets the value of the signType property.
-
-
-
Field Detail
-
signTaskId
protected java.lang.String signTaskId
-
signType
protected java.lang.String signType
-
keyId
protected java.lang.String keyId
-
attributes
protected BaseSignTask.Attributes attributes
-
-
Method Detail
-
getSignTaskId
public java.lang.String getSignTaskId()
Gets the value of the signTaskId property.- Returns:
- possible object is
String
-
setSignTaskId
public void setSignTaskId(java.lang.String value)
Sets the value of the signTaskId property.- Parameters:
value- allowed object isString
-
getSignType
public java.lang.String getSignType()
Gets the value of the signType property.- Returns:
- possible object is
String
-
setSignType
public void setSignType(java.lang.String value)
Sets the value of the signType property.- Parameters:
value- allowed object isString
-
getKeyId
public java.lang.String getKeyId()
Gets the value of the keyId property.- Returns:
- possible object is
String
-
setKeyId
public void setKeyId(java.lang.String value)
Sets the value of the keyId property.- Parameters:
value- allowed object isString
-
getAttributes
public BaseSignTask.Attributes getAttributes()
Gets the value of the attributes property.- Returns:
- possible object is
BaseSignTask.Attributes
-
setAttributes
public void setAttributes(BaseSignTask.Attributes value)
Sets the value of the attributes property.- Parameters:
value- allowed object isBaseSignTask.Attributes
-
-