package com.sitewhere.assetmodule.magento.ws; 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 apiEntity complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="apiEntity"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="aliases" type="{urn:Magento}ArrayOfString"/> * <element name="methods" type="{urn:Magento}ArrayOfApiMethods"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "apiEntity", propOrder = { "title", "name", "aliases", "methods" }) public class ApiEntity { @XmlElement(required = true) protected String title; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected ArrayOfString aliases; @XmlElement(required = true) protected ArrayOfApiMethods methods; /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the aliases property. * * @return * possible object is * {@link ArrayOfString } * */ public ArrayOfString getAliases() { return aliases; } /** * Sets the value of the aliases property. * * @param value * allowed object is * {@link ArrayOfString } * */ public void setAliases(ArrayOfString value) { this.aliases = value; } /** * Gets the value of the methods property. * * @return * possible object is * {@link ArrayOfApiMethods } * */ public ArrayOfApiMethods getMethods() { return methods; } /** * Sets the value of the methods property. * * @param value * allowed object is * {@link ArrayOfApiMethods } * */ public void setMethods(ArrayOfApiMethods value) { this.methods = value; } }