com.scene7.ipsapi.PropertySet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// 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: 2024.06.06 at 01:39:50 PM UTC
//
package com.scene7.ipsapi;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for PropertySet complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PropertySet">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="setHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="typeHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="propertyArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}PropertyArray"/>
* <element name="permissions" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}PermissionArray" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PropertySet", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"setHandle",
"typeHandle",
"propertyArray",
"permissions"
})
public class PropertySet {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String setHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String typeHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected PropertyArray propertyArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected PermissionArray permissions;
/**
* Gets the value of the setHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSetHandle() {
return setHandle;
}
/**
* Sets the value of the setHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSetHandle(String value) {
this.setHandle = value;
}
/**
* Gets the value of the typeHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTypeHandle() {
return typeHandle;
}
/**
* Sets the value of the typeHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTypeHandle(String value) {
this.typeHandle = value;
}
/**
* Gets the value of the propertyArray property.
*
* @return
* possible object is
* {@link PropertyArray }
*
*/
public PropertyArray getPropertyArray() {
return propertyArray;
}
/**
* Sets the value of the propertyArray property.
*
* @param value
* allowed object is
* {@link PropertyArray }
*
*/
public void setPropertyArray(PropertyArray value) {
this.propertyArray = value;
}
/**
* Gets the value of the permissions property.
*
* @return
* possible object is
* {@link PermissionArray }
*
*/
public PermissionArray getPermissions() {
return permissions;
}
/**
* Sets the value of the permissions property.
*
* @param value
* allowed object is
* {@link PermissionArray }
*
*/
public void setPermissions(PermissionArray value) {
this.permissions = value;
}
}