Class DocumentBaseType
- java.lang.Object
-
- org.certificateservices.messages.dss1.core.jaxb.DocumentBaseType
-
- Direct Known Subclasses:
DocumentHash,DocumentType,TransformedData
public abstract class DocumentBaseType extends java.lang.ObjectJava class for DocumentBaseType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DocumentBaseType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}ID" /> <attribute name="RefURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> <attribute name="RefType" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> <attribute name="SchemaRefs" type="{http://www.w3.org/2001/XMLSchema}IDREFS" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringidprotected java.lang.StringrefTypeprotected java.lang.StringrefURIprotected java.util.List<java.lang.Object>schemaRefs
-
Constructor Summary
Constructors Constructor Description DocumentBaseType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetID()Gets the value of the id property.java.lang.StringgetRefType()Gets the value of the refType property.java.lang.StringgetRefURI()Gets the value of the refURI property.java.util.List<java.lang.Object>getSchemaRefs()Gets the value of the schemaRefs property.voidsetID(java.lang.String value)Sets the value of the id property.voidsetRefType(java.lang.String value)Sets the value of the refType property.voidsetRefURI(java.lang.String value)Sets the value of the refURI property.
-
-
-
Method Detail
-
getID
public java.lang.String getID()
Gets the value of the id property.- Returns:
- possible object is
String
-
setID
public void setID(java.lang.String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getRefURI
public java.lang.String getRefURI()
Gets the value of the refURI property.- Returns:
- possible object is
String
-
setRefURI
public void setRefURI(java.lang.String value)
Sets the value of the refURI property.- Parameters:
value- allowed object isString
-
getRefType
public java.lang.String getRefType()
Gets the value of the refType property.- Returns:
- possible object is
String
-
setRefType
public void setRefType(java.lang.String value)
Sets the value of the refType property.- Parameters:
value- allowed object isString
-
getSchemaRefs
public java.util.List<java.lang.Object> getSchemaRefs()
Gets the value of the schemaRefs property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the schemaRefs property.For example, to add a new item, do as follows:
getSchemaRefs().add(newItem);Objects of the following type(s) are allowed in the list
Object
-
-