
se.swedenconnect.schemas.dss_1_0.Properties Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.02.24 at 11:49:44 AM CET
//
package se.swedenconnect.schemas.dss_1_0;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SignedProperties" type="{urn:oasis:names:tc:dss:1.0:core:schema}PropertiesType" minOccurs="0"/>
* <element name="UnsignedProperties" type="{urn:oasis:names:tc:dss:1.0:core:schema}PropertiesType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"signedProperties",
"unsignedProperties"
})
@XmlRootElement(name = "Properties")
public class Properties {
@XmlElement(name = "SignedProperties")
protected PropertiesType signedProperties;
@XmlElement(name = "UnsignedProperties")
protected PropertiesType unsignedProperties;
/**
* Gets the value of the signedProperties property.
*
* @return
* possible object is
* {@link PropertiesType }
*
*/
public PropertiesType getSignedProperties() {
return signedProperties;
}
/**
* Sets the value of the signedProperties property.
*
* @param value
* allowed object is
* {@link PropertiesType }
*
*/
public void setSignedProperties(PropertiesType value) {
this.signedProperties = value;
}
public boolean isSetSignedProperties() {
return (this.signedProperties!= null);
}
/**
* Gets the value of the unsignedProperties property.
*
* @return
* possible object is
* {@link PropertiesType }
*
*/
public PropertiesType getUnsignedProperties() {
return unsignedProperties;
}
/**
* Sets the value of the unsignedProperties property.
*
* @param value
* allowed object is
* {@link PropertiesType }
*
*/
public void setUnsignedProperties(PropertiesType value) {
this.unsignedProperties = value;
}
public boolean isSetUnsignedProperties() {
return (this.unsignedProperties!= null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy