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

io.atlasmap.java.v2.MavenClasspathResponse Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version

package io.atlasmap.java.v2;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.fasterxml.jackson.annotation.JsonTypeInfo;


/**
 * 

Java class for MavenClasspathResponse complex type. * *

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

 * <complexType name="MavenClasspathResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="classpath" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="errorMessage" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="executionTime" type="{http://www.w3.org/2001/XMLSchema}long" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MavenClasspathResponse") @XmlRootElement(name = "MavenClasspathResponse") @JsonRootName("MavenClasspathResponse") @JsonTypeInfo(include = JsonTypeInfo.As.PROPERTY, use = JsonTypeInfo.Id.CLASS, property = "jsonType") public class MavenClasspathResponse implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "classpath") protected String classpath; @XmlAttribute(name = "errorMessage") protected String errorMessage; @XmlAttribute(name = "executionTime") protected Long executionTime; /** * Gets the value of the classpath property. * * @return * possible object is * {@link String } * */ public String getClasspath() { return classpath; } /** * Sets the value of the classpath property. * * @param value * allowed object is * {@link String } * */ public void setClasspath(String value) { this.classpath = value; } /** * Gets the value of the errorMessage property. * * @return * possible object is * {@link String } * */ public String getErrorMessage() { return errorMessage; } /** * Sets the value of the errorMessage property. * * @param value * allowed object is * {@link String } * */ public void setErrorMessage(String value) { this.errorMessage = value; } /** * Gets the value of the executionTime property. * * @return * possible object is * {@link Long } * */ public Long getExecutionTime() { return executionTime; } /** * Sets the value of the executionTime property. * * @param value * allowed object is * {@link Long } * */ public void setExecutionTime(Long value) { this.executionTime = value; } public boolean equals(Object object) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; } if (this == object) { return true; } final MavenClasspathResponse that = ((MavenClasspathResponse) object); { String leftClasspath; leftClasspath = this.getClasspath(); String rightClasspath; rightClasspath = that.getClasspath(); if (this.classpath!= null) { if (that.classpath!= null) { if (!leftClasspath.equals(rightClasspath)) { return false; } } else { return false; } } else { if (that.classpath!= null) { return false; } } } { String leftErrorMessage; leftErrorMessage = this.getErrorMessage(); String rightErrorMessage; rightErrorMessage = that.getErrorMessage(); if (this.errorMessage!= null) { if (that.errorMessage!= null) { if (!leftErrorMessage.equals(rightErrorMessage)) { return false; } } else { return false; } } else { if (that.errorMessage!= null) { return false; } } } { Long leftExecutionTime; leftExecutionTime = this.getExecutionTime(); Long rightExecutionTime; rightExecutionTime = that.getExecutionTime(); if (this.executionTime!= null) { if (that.executionTime!= null) { if (!leftExecutionTime.equals(rightExecutionTime)) { return false; } } else { return false; } } else { if (that.executionTime!= null) { return false; } } } return true; } public int hashCode() { int currentHashCode = 1; { currentHashCode = (currentHashCode* 31); String theClasspath; theClasspath = this.getClasspath(); if (this.classpath!= null) { currentHashCode += theClasspath.hashCode(); } } { currentHashCode = (currentHashCode* 31); String theErrorMessage; theErrorMessage = this.getErrorMessage(); if (this.errorMessage!= null) { currentHashCode += theErrorMessage.hashCode(); } } { currentHashCode = (currentHashCode* 31); Long theExecutionTime; theExecutionTime = this.getExecutionTime(); if (this.executionTime!= null) { currentHashCode += theExecutionTime.hashCode(); } } return currentHashCode; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy