Class IdReference
- java.lang.Object
-
- com.sun.identity.entitlement.xacml3.core.IdReference
-
- All Implemented Interfaces:
XACMLRootElement
public class IdReference extends Object implements XACMLRootElement
Java class for IdReferenceType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="IdReferenceType"> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>anyURI"> <attribute name="Version" type="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}VersionMatchType" /> <attribute name="EarliestVersion" type="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}VersionMatchType" /> <attribute name="LatestVersion" type="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}VersionMatchType" /> </extension> </simpleContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected VersionMatch
earliestVersion
protected VersionMatch
latestVersion
protected String
value
protected VersionMatch
version
-
Fields inherited from interface com.sun.identity.entitlement.xacml3.core.XACMLRootElement
XACML3_NAMESPACE
-
-
Constructor Summary
Constructors Constructor Description IdReference()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VersionMatch
getEarliestVersion()
Gets the value of the earliestVersion property.VersionMatch
getLatestVersion()
Gets the value of the latestVersion property.String
getValue()
Gets the value of the value property.VersionMatch
getVersion()
Gets the value of the version property.void
setEarliestVersion(VersionMatch value)
Sets the value of the earliestVersion property.void
setLatestVersion(VersionMatch value)
Sets the value of the latestVersion property.void
setValue(String value)
Sets the value of the value property.void
setVersion(VersionMatch value)
Sets the value of the version property.String
toXML()
Default toXML Method to Marshal Object into XML.
-
-
-
Field Detail
-
value
protected String value
-
version
protected VersionMatch version
-
earliestVersion
protected VersionMatch earliestVersion
-
latestVersion
protected VersionMatch latestVersion
-
-
Method Detail
-
getValue
public String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
public void setValue(String value)
Sets the value of the value property.- Parameters:
value
- allowed object isString
-
getVersion
public VersionMatch getVersion()
Gets the value of the version property.- Returns:
- possible object is
VersionMatch
-
setVersion
public void setVersion(VersionMatch value)
Sets the value of the version property.- Parameters:
value
- allowed object isVersionMatch
-
getEarliestVersion
public VersionMatch getEarliestVersion()
Gets the value of the earliestVersion property.- Returns:
- possible object is
VersionMatch
-
setEarliestVersion
public void setEarliestVersion(VersionMatch value)
Sets the value of the earliestVersion property.- Parameters:
value
- allowed object isVersionMatch
-
getLatestVersion
public VersionMatch getLatestVersion()
Gets the value of the latestVersion property.- Returns:
- possible object is
VersionMatch
-
setLatestVersion
public void setLatestVersion(VersionMatch value)
Sets the value of the latestVersion property.- Parameters:
value
- allowed object isVersionMatch
-
toXML
public String toXML()
Default toXML Method to Marshal Object into XML.- Specified by:
toXML
in interfaceXACMLRootElement
- Returns:
- String - Marshaled Results into XML String.
-
-