blob: 94586dac9d61332c8e442bb050d5aa0d1457ab29 [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, v2.2.11
// 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: 2018.04.30 at 04:55:04 PM IST
//
package org.apache.xml.security.binding.xmlenc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for CipherDataType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="CipherDataType"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;choice&gt;
* &lt;element ref="{http://www.w3.org/2001/04/xmlenc#}CipherValue"/&gt;
* &lt;element ref="{http://www.w3.org/2001/04/xmlenc#}CipherReference"/&gt;
* &lt;/choice&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CipherDataType", namespace = "http://www.w3.org/2001/04/xmlenc#", propOrder = {
"cipherValue",
"cipherReference"
})
public class CipherDataType {
@XmlElement(name = "CipherValue", namespace = "http://www.w3.org/2001/04/xmlenc#")
protected CipherValueType cipherValue;
@XmlElement(name = "CipherReference", namespace = "http://www.w3.org/2001/04/xmlenc#")
protected CipherReferenceType cipherReference;
/**
* Gets the value of the cipherValue property.
*
* @return
* possible object is
* {@link CipherValueType }
*
*/
public CipherValueType getCipherValue() {
return cipherValue;
}
/**
* Sets the value of the cipherValue property.
*
* @param value
* allowed object is
* {@link CipherValueType }
*
*/
public void setCipherValue(CipherValueType value) {
this.cipherValue = value;
}
/**
* Gets the value of the cipherReference property.
*
* @return
* possible object is
* {@link CipherReferenceType }
*
*/
public CipherReferenceType getCipherReference() {
return cipherReference;
}
/**
* Sets the value of the cipherReference property.
*
* @param value
* allowed object is
* {@link CipherReferenceType }
*
*/
public void setCipherReference(CipherReferenceType value) {
this.cipherReference = value;
}
}