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

org.bidib.jbidibc.decoder.schema.decoderdetection.DecoderDetection Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.8 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.12.16 at 01:05:33 PM CET 
//


package org.bidib.jbidibc.decoder.schema.decoderdetection;

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 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;
import org.bidib.jbidibc.decoder.schema.commontypes.VersionType;


/**
 * 

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="version" type="{http://www.decoderdb.de/schema/commonTypes/1.2}VersionType"/>
 *         <element name="protocols" type="{http://www.decoderdb.de/schema/decoderDetection/1.1}ProtocolsType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "version", "protocols" }) @XmlRootElement(name = "decoderDetection") public class DecoderDetection { @XmlElement(required = true) protected VersionType version; @XmlElement(required = true) protected ProtocolsType protocols; /** * Gets the value of the version property. * * @return * possible object is * {@link VersionType } * */ public VersionType getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link VersionType } * */ public void setVersion(VersionType value) { this.version = value; } /** * Gets the value of the protocols property. * * @return * possible object is * {@link ProtocolsType } * */ public ProtocolsType getProtocols() { return protocols; } /** * Sets the value of the protocols property. * * @param value * allowed object is * {@link ProtocolsType } * */ public void setProtocols(ProtocolsType value) { this.protocols = value; } @Override public String toString() { return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); } @Override public boolean equals(Object that) { return EqualsBuilder.reflectionEquals(this, that); } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } public DecoderDetection withVersion(VersionType value) { setVersion(value); return this; } public DecoderDetection withProtocols(ProtocolsType value) { setProtocols(value); return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy