All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fish.focus.schema.exchange.source.v1.RegisterServiceRequest Maven / Gradle / Ivy


package fish.focus.schema.exchange.source.v1;

import java.io.Serializable;
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;
import fish.focus.schema.exchange.service.v1.CapabilityListType;
import fish.focus.schema.exchange.service.v1.ServiceType;
import fish.focus.schema.exchange.service.v1.SettingListType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <extension base="{urn:source.exchange.schema.focus.fish:v1}ExchangeBaseRequest">
 *       <sequence>
 *         <element name="service" type="{urn:service.exchange.schema.focus.fish:v1}ServiceType"/>
 *         <element name="settingList" type="{urn:service.exchange.schema.focus.fish:v1}SettingListType"/>
 *         <element name="capabilityList" type="{urn:service.exchange.schema.focus.fish:v1}CapabilityListType"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "service", "settingList", "capabilityList" }) @XmlRootElement(name = "RegisterServiceRequest") public class RegisterServiceRequest extends ExchangeBaseRequest implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected ServiceType service; @XmlElement(required = true) protected SettingListType settingList; @XmlElement(required = true) protected CapabilityListType capabilityList; /** * Gets the value of the service property. * * @return * possible object is * {@link ServiceType } * */ public ServiceType getService() { return service; } /** * Sets the value of the service property. * * @param value * allowed object is * {@link ServiceType } * */ public void setService(ServiceType value) { this.service = value; } /** * Gets the value of the settingList property. * * @return * possible object is * {@link SettingListType } * */ public SettingListType getSettingList() { return settingList; } /** * Sets the value of the settingList property. * * @param value * allowed object is * {@link SettingListType } * */ public void setSettingList(SettingListType value) { this.settingList = value; } /** * Gets the value of the capabilityList property. * * @return * possible object is * {@link CapabilityListType } * */ public CapabilityListType getCapabilityList() { return capabilityList; } /** * Sets the value of the capabilityList property. * * @param value * allowed object is * {@link CapabilityListType } * */ public void setCapabilityList(CapabilityListType value) { this.capabilityList = value; } @Override public String toString() { return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE); } @Override public boolean equals(Object that) { return EqualsBuilder.reflectionEquals(this, that); } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy