public class Directive extends Object
Directive
represents a discovery service
DirectiveType
element. Current implementation supports the
following four directive types: AUTHENTICATE_REQUESTER
,
AUTHORIZE_REQUESTER
, AUTHENTICATE_SESSION_CONTEXT
,
and ENCRYPT_RESOURCEID
.
The following schema fragment specifies the expected content within the
DirectiveType
object.
<complexType name="DirectiveType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="descriptionIDRefs" type="{http://www.w3.org/2001/XMLSchema}IDREFS" /> </restriction> </complexContent> </complexType>
Constructor and Description |
---|
Directive(Element elem)
Constructs a directive instance from DOM element.
|
Directive(String directiveType)
Constructs a directive instance for a type of directive.
|
Modifier and Type | Method and Description |
---|---|
List |
getDescriptionIDRef()
Returns a list of description ID references.
|
String |
getDirectiveType()
Returns type of directive.
|
void |
setDescriptionIDRef(List idrefs)
Sets a list of description ID references.
|
void |
setDirectiveType(String directiveType)
Sets type of the directive.
|
String |
toString()
Returns the directive object in string format.
|
public Directive(String directiveType)
directiveType
- Type of the directive.public Directive(Element elem) throws DiscoveryException
elem
- DirectiveType
DOM element.DiscoveryException
- if error occurs.public List getDescriptionIDRef()
Directive.setDescriptionIDRef(List)
public void setDescriptionIDRef(List idrefs)
idrefs
- a list of description ID references to be set.Directive.getDescriptionIDRef()
public String getDirectiveType()
Directive.setDirectiveType(String)
public void setDirectiveType(String directiveType)
directiveType
- type of the directive to be set.Directive.getDirectiveType()
Copyright © 2010-2018, ForgeRock All Rights Reserved.