blob: 7e9829b9aaae58e7a7ff98bf335043e2f36650cc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.05.23 at 02:47:00 PM EDT
//
package oasis.names.tc.xacml._3_0.core.schema.wd_17;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>
* Java class for PolicyType complex type.
* <p>
* The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="PolicyType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}Description" minOccurs="0"/>
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}PolicyIssuer" minOccurs="0"/>
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}PolicyDefaults" minOccurs="0"/>
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}Target"/>
* &lt;choice maxOccurs="unbounded">
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}CombinerParameters" minOccurs="0"/>
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}RuleCombinerParameters" minOccurs="0"/>
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}VariableDefinition"/>
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}Rule"/>
* &lt;/choice>
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}ObligationExpressions" minOccurs="0"/>
* &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}AdviceExpressions" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="PolicyId" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* &lt;attribute name="Version" use="required" type="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}VersionType" />
* &lt;attribute name="RuleCombiningAlgId" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* &lt;attribute name="MaxDelegationDepth" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PolicyType", propOrder = {
"description", "policyIssuer", "policyDefaults", "target",
"combinerParametersOrRuleCombinerParametersOrVariableDefinition", "obligationExpressions",
"adviceExpressions"
})
public class PolicyType {
@XmlElement(name = "Description")
protected String description;
@XmlElement(name = "PolicyIssuer")
protected PolicyIssuerType policyIssuer;
@XmlElement(name = "PolicyDefaults")
protected DefaultsType policyDefaults;
@XmlElement(name = "Target", required = true)
protected TargetType target;
@XmlElements({
@XmlElement(name = "RuleCombinerParameters", type = RuleCombinerParametersType.class),
@XmlElement(name = "CombinerParameters", type = CombinerParametersType.class),
@XmlElement(name = "VariableDefinition", type = VariableDefinitionType.class),
@XmlElement(name = "Rule", type = RuleType.class)
})
protected List<Object> combinerParametersOrRuleCombinerParametersOrVariableDefinition;
@XmlElement(name = "ObligationExpressions")
protected ObligationExpressionsType obligationExpressions;
@XmlElement(name = "AdviceExpressions")
protected AdviceExpressionsType adviceExpressions;
@XmlAttribute(name = "PolicyId", required = true)
@XmlSchemaType(name = "anyURI")
protected String policyId;
@XmlAttribute(name = "Version", required = true)
protected String version;
@XmlAttribute(name = "RuleCombiningAlgId", required = true)
@XmlSchemaType(name = "anyURI")
protected String ruleCombiningAlgId;
@XmlAttribute(name = "MaxDelegationDepth")
protected BigInteger maxDelegationDepth;
/**
* Gets the value of the description property.
*
* @return possible object is {@link String }
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value allowed object is {@link String }
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the policyIssuer property.
*
* @return possible object is {@link PolicyIssuerType }
*/
public PolicyIssuerType getPolicyIssuer() {
return policyIssuer;
}
/**
* Sets the value of the policyIssuer property.
*
* @param value allowed object is {@link PolicyIssuerType }
*/
public void setPolicyIssuer(PolicyIssuerType value) {
this.policyIssuer = value;
}
/**
* Gets the value of the policyDefaults property.
*
* @return possible object is {@link DefaultsType }
*/
public DefaultsType getPolicyDefaults() {
return policyDefaults;
}
/**
* Sets the value of the policyDefaults property.
*
* @param value allowed object is {@link DefaultsType }
*/
public void setPolicyDefaults(DefaultsType value) {
this.policyDefaults = value;
}
/**
* Gets the value of the target property.
*
* @return possible object is {@link TargetType }
*/
public TargetType getTarget() {
return target;
}
/**
* Sets the value of the target property.
*
* @param value allowed object is {@link TargetType }
*/
public void setTarget(TargetType value) {
this.target = value;
}
/**
* Gets the value of the combinerParametersOrRuleCombinerParametersOrVariableDefinition property.
* <p>
* 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
* <CODE>set</CODE> method for the combinerParametersOrRuleCombinerParametersOrVariableDefinition
* property.
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getCombinerParametersOrRuleCombinerParametersOrVariableDefinition().add(newItem);
* </pre>
* <p>
* Objects of the following type(s) are allowed in the list {@link RuleCombinerParametersType }
* {@link CombinerParametersType } {@link VariableDefinitionType }
* {@link oasis.names.tc.xacml._3_0.core.schema.wd_17.RuleType }
*/
public List<Object> getCombinerParametersOrRuleCombinerParametersOrVariableDefinition() {
if (combinerParametersOrRuleCombinerParametersOrVariableDefinition == null) {
combinerParametersOrRuleCombinerParametersOrVariableDefinition = new ArrayList<Object>();
}
return this.combinerParametersOrRuleCombinerParametersOrVariableDefinition;
}
/**
* Gets the value of the obligationExpressions property.
*
* @return possible object is {@link ObligationExpressionsType }
*/
public ObligationExpressionsType getObligationExpressions() {
return obligationExpressions;
}
/**
* Sets the value of the obligationExpressions property.
*
* @param value allowed object is {@link ObligationExpressionsType }
*/
public void setObligationExpressions(ObligationExpressionsType value) {
this.obligationExpressions = value;
}
/**
* Gets the value of the adviceExpressions property.
*
* @return possible object is {@link AdviceExpressionsType }
*/
public AdviceExpressionsType getAdviceExpressions() {
return adviceExpressions;
}
/**
* Sets the value of the adviceExpressions property.
*
* @param value allowed object is {@link AdviceExpressionsType }
*/
public void setAdviceExpressions(AdviceExpressionsType value) {
this.adviceExpressions = value;
}
/**
* Gets the value of the policyId property.
*
* @return possible object is {@link String }
*/
public String getPolicyId() {
return policyId;
}
/**
* Sets the value of the policyId property.
*
* @param value allowed object is {@link String }
*/
public void setPolicyId(String value) {
this.policyId = value;
}
/**
* Gets the value of the version property.
*
* @return possible object is {@link String }
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value allowed object is {@link String }
*/
public void setVersion(String value) {
this.version = value;
}
/**
* Gets the value of the ruleCombiningAlgId property.
*
* @return possible object is {@link String }
*/
public String getRuleCombiningAlgId() {
return ruleCombiningAlgId;
}
/**
* Sets the value of the ruleCombiningAlgId property.
*
* @param value allowed object is {@link String }
*/
public void setRuleCombiningAlgId(String value) {
this.ruleCombiningAlgId = value;
}
/**
* Gets the value of the maxDelegationDepth property.
*
* @return possible object is {@link java.math.BigInteger }
*/
public BigInteger getMaxDelegationDepth() {
return maxDelegationDepth;
}
/**
* Sets the value of the maxDelegationDepth property.
*
* @param value allowed object is {@link java.math.BigInteger }
*/
public void setMaxDelegationDepth(BigInteger value) {
this.maxDelegationDepth = value;
}
}