Package org.opensaml.saml.saml1.core
Interface Action
-
- All Superinterfaces:
SAMLObject,XMLObject,XSString
public interface Action extends SAMLObject, XSString
Interface describing how a SAML1.1Actionelement behaves.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEDefault element name, no namespace.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringNAMESPACE_ATTRIB_NAMEName for the Namespace attribute.static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default StringgetContents()Deprecated, for removal: This API element is subject to removal in a future version.StringgetNamespace()Return the value of Namespace.default voidsetContents(String value)Deprecated, for removal: This API element is subject to removal in a future version.voidsetNamespace(String namespace)Set the value of Namespace.-
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
-
DEFAULT_ELEMENT_LOCAL_NAME
@Nonnull @NotEmpty static final String DEFAULT_ELEMENT_LOCAL_NAME
Default element name, no namespace.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
@Nullable static final QName DEFAULT_ELEMENT_NAME
Default element name.
-
TYPE_LOCAL_NAME
@Nonnull @NotEmpty static final String TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
@Nullable static final QName TYPE_NAME
QName of the XSI type.
-
NAMESPACE_ATTRIB_NAME
@Nonnull @NotEmpty static final String NAMESPACE_ATTRIB_NAME
Name for the Namespace attribute.- See Also:
- Constant Field Values
-
-
Method Detail
-
getNamespace
@Nullable String getNamespace()
Return the value of Namespace.- Returns:
- the namespace
-
setNamespace
void setNamespace(@Nullable String namespace)Set the value of Namespace.- Parameters:
namespace- what to set
-
getContents
@Deprecated(forRemoval=true, since="4.0.0") @Nullable default String getContents()
Deprecated, for removal: This API element is subject to removal in a future version.Gets the value of the action to be performed.- Returns:
- the value of the action to be performed
-
setContents
@Deprecated(forRemoval=true, since="4.0.0") default void setContents(@Nullable String value)
Deprecated, for removal: This API element is subject to removal in a future version.Sets the value of the action to be performed.- Parameters:
value- the value of the action to be performed
-
-