Package org.w3.xmldsig
Class ManifestType
- java.lang.Object
-
- org.w3.xmldsig.ManifestType
-
public class ManifestType extends Object
Java class for ManifestType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ManifestType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.w3.org/2000/09/xmldsig#}Reference" maxOccurs="unbounded"/> </sequence> <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classManifestType.Builder<_B>static classManifestType.Selectstatic classManifestType.Selector<TRoot extends com.kscs.util.jaxb.Selector<TRoot,?>,TParent>
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected List<ReferenceType>reference
-
Constructor Summary
Constructors Constructor Description ManifestType()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ManifestType.Builder<Void>builder()static ManifestType.Builder<Void>copyExcept(ManifestType _other, com.kscs.util.jaxb.PropertyTree _propertyTree)static <_B> ManifestType.Builder<_B>copyOf(ManifestType _other)static <_B> ManifestType.Builder<_B>copyOf(ManifestType _other, com.kscs.util.jaxb.PropertyTree _propertyTree, com.kscs.util.jaxb.PropertyTreeUse _propertyTreeUse)static ManifestType.Builder<Void>copyOnly(ManifestType _other, com.kscs.util.jaxb.PropertyTree _propertyTree)<_B> voidcopyTo(ManifestType.Builder<_B> _other)Copies all state of this object to a builder.<_B> voidcopyTo(ManifestType.Builder<_B> _other, com.kscs.util.jaxb.PropertyTree _propertyTree, com.kscs.util.jaxb.PropertyTreeUse _propertyTreeUse)Copies all state of this object to a builder.StringgetId()Gets the value of the id property.List<ReferenceType>getReference()Gets the value of the reference property.ManifestType.Builder<Void>newCopyBuilder()<_B> ManifestType.Builder<_B>newCopyBuilder(_B _parentBuilder)<_B> ManifestType.Builder<_B>newCopyBuilder(_B _parentBuilder, com.kscs.util.jaxb.PropertyTree _propertyTree, com.kscs.util.jaxb.PropertyTreeUse _propertyTreeUse)ManifestType.Builder<Void>newCopyBuilder(com.kscs.util.jaxb.PropertyTree _propertyTree, com.kscs.util.jaxb.PropertyTreeUse _propertyTreeUse)voidsetId(String value)Sets the value of the id property.
-
-
-
Field Detail
-
reference
protected List<ReferenceType> reference
-
id
protected String id
-
-
Method Detail
-
getReference
public List<ReferenceType> getReference()
Gets the value of the reference 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 reference property.For example, to add a new item, do as follows:
getReference().add(newItem);Objects of the following type(s) are allowed in the list
ReferenceType
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
copyTo
public <_B> void copyTo(ManifestType.Builder<_B> _other)
Copies all state of this object to a builder. This method is used by thecopyOf(org.w3.xmldsig.ManifestType)method and should not be called directly by client code.- Parameters:
_other- A builder instance to which the state of this object will be copied.
-
newCopyBuilder
public <_B> ManifestType.Builder<_B> newCopyBuilder(_B _parentBuilder)
-
newCopyBuilder
public ManifestType.Builder<Void> newCopyBuilder()
-
builder
public static ManifestType.Builder<Void> builder()
-
copyOf
public static <_B> ManifestType.Builder<_B> copyOf(ManifestType _other)
-
copyTo
public <_B> void copyTo(ManifestType.Builder<_B> _other, com.kscs.util.jaxb.PropertyTree _propertyTree, com.kscs.util.jaxb.PropertyTreeUse _propertyTreeUse)
Copies all state of this object to a builder. This method is used by thecopyOf(org.w3.xmldsig.ManifestType)method and should not be called directly by client code.- Parameters:
_other- A builder instance to which the state of this object will be copied.
-
newCopyBuilder
public <_B> ManifestType.Builder<_B> newCopyBuilder(_B _parentBuilder, com.kscs.util.jaxb.PropertyTree _propertyTree, com.kscs.util.jaxb.PropertyTreeUse _propertyTreeUse)
-
newCopyBuilder
public ManifestType.Builder<Void> newCopyBuilder(com.kscs.util.jaxb.PropertyTree _propertyTree, com.kscs.util.jaxb.PropertyTreeUse _propertyTreeUse)
-
copyOf
public static <_B> ManifestType.Builder<_B> copyOf(ManifestType _other, com.kscs.util.jaxb.PropertyTree _propertyTree, com.kscs.util.jaxb.PropertyTreeUse _propertyTreeUse)
-
copyExcept
public static ManifestType.Builder<Void> copyExcept(ManifestType _other, com.kscs.util.jaxb.PropertyTree _propertyTree)
-
copyOnly
public static ManifestType.Builder<Void> copyOnly(ManifestType _other, com.kscs.util.jaxb.PropertyTree _propertyTree)
-
-