public class RequestType extends Object
Java class for RequestType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RequestType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:tc:xacml:2.0:context:schema:os}Subject" maxOccurs="unbounded"/> <element ref="{urn:oasis:names:tc:xacml:2.0:context:schema:os}Resource" maxOccurs="unbounded"/> <element ref="{urn:oasis:names:tc:xacml:2.0:context:schema:os}Action"/> <element ref="{urn:oasis:names:tc:xacml:2.0:context:schema:os}Environment"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected ActionType |
action |
protected EnvironmentType |
environment |
protected List<ResourceType> |
resource |
protected List<SubjectType> |
subject |
Constructor and Description |
---|
RequestType() |
Modifier and Type | Method and Description |
---|---|
ActionType |
getAction()
Gets the value of the action property.
|
EnvironmentType |
getEnvironment()
Gets the value of the environment property.
|
List<ResourceType> |
getResource()
Gets the value of the resource property.
|
List<SubjectType> |
getSubject()
Gets the value of the subject property.
|
void |
setAction(ActionType value)
Sets the value of the action property.
|
void |
setEnvironment(EnvironmentType value)
Sets the value of the environment property.
|
protected List<SubjectType> subject
protected List<ResourceType> resource
protected ActionType action
protected EnvironmentType environment
public List<SubjectType> getSubject()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set
method for the subject property.
For example, to add a new item, do as follows:
getSubject().add(newItem);
Objects of the following type(s) are allowed in the list
SubjectType
public List<ResourceType> getResource()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set
method for the resource property.
For example, to add a new item, do as follows:
getResource().add(newItem);
Objects of the following type(s) are allowed in the list
ResourceType
public ActionType getAction()
ActionType
public void setAction(ActionType value)
value
- allowed object is
ActionType
public EnvironmentType getEnvironment()
EnvironmentType
public void setEnvironment(EnvironmentType value)
value
- allowed object is
EnvironmentType
Copyright © 2023 JBoss by Red Hat. All rights reserved.