Interface ScopedValue
-
- All Superinterfaces:
SAMLObject,XMLObject
- All Known Implementing Classes:
ScopedValueImpl
public interface ScopedValue extends SAMLObject
XMLObject that represents a SAML attribute value whose value contains a scope attribute.
-
-
Field Summary
Fields Modifier and Type Field Description static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetScope()Gets the scope value.StringgetScopeAttributeName()Gets the name of the scope attribute.StringgetValue()Get the attribute value.voidsetScope(String scope)Sets the scope value.voidsetScopeAttributeName(String attribute)Sets the name of the scope attribute.voidsetValue(String newContent)Set the attribute value.-
Methods inherited from interface org.opensaml.core.xml.XMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
-
-
-
-
Field Detail
-
TYPE_LOCAL_NAME
static final String TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
static final QName TYPE_NAME
QName of the XSI type.
-
-
Method Detail
-
getScopeAttributeName
String getScopeAttributeName()
Gets the name of the scope attribute.- Returns:
- name of the scope attribute
-
setScopeAttributeName
void setScopeAttributeName(String attribute)
Sets the name of the scope attribute.- Parameters:
attribute- name of the scope attribute
-
getScope
String getScope()
Gets the scope value.- Returns:
- scope value
-
setScope
void setScope(String scope)
Sets the scope value.- Parameters:
scope- scope value
-
setValue
void setValue(String newContent)
Set the attribute value.- Parameters:
newContent- the new attribute value
-
getValue
String getValue()
Get the attribute value.- Returns:
- the attribute value.
-
-