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 VersionMatchearliestVersionprotected VersionMatchlatestVersionprotected Stringvalueprotected VersionMatchversion-
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 VersionMatchgetEarliestVersion()Gets the value of the earliestVersion property.VersionMatchgetLatestVersion()Gets the value of the latestVersion property.StringgetValue()Gets the value of the value property.VersionMatchgetVersion()Gets the value of the version property.voidsetEarliestVersion(VersionMatch value)Sets the value of the earliestVersion property.voidsetLatestVersion(VersionMatch value)Sets the value of the latestVersion property.voidsetValue(String value)Sets the value of the value property.voidsetVersion(VersionMatch value)Sets the value of the version property.StringtoXML()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:
toXMLin interfaceXACMLRootElement- Returns:
- String - Marshaled Results into XML String.
-
-