package com.rapid_i.repository.wsimport; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for accessRights complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="accessRights"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="execute" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="group" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="read" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="write" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "accessRights", propOrder = { "execute", "group", "read", "write" }) public class AccessRights { protected String execute; protected String group; protected String read; protected String write; /** * Gets the value of the execute property. * * @return * possible object is * {@link String } * */ public String getExecute() { return execute; } /** * Sets the value of the execute property. * * @param value * allowed object is * {@link String } * */ public void setExecute(String value) { this.execute = value; } /** * Gets the value of the group property. * * @return * possible object is * {@link String } * */ public String getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link String } * */ public void setGroup(String value) { this.group = value; } /** * Gets the value of the read property. * * @return * possible object is * {@link String } * */ public String getRead() { return read; } /** * Sets the value of the read property. * * @param value * allowed object is * {@link String } * */ public void setRead(String value) { this.read = value; } /** * Gets the value of the write property. * * @return * possible object is * {@link String } * */ public String getWrite() { return write; } /** * Sets the value of the write property. * * @param value * allowed object is * {@link String } * */ public void setWrite(String value) { this.write = value; } }