org.smartdeveloperhub.jenkins.crawler.xml.ci.SimpleJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ci-jenkins-crawler Show documentation
Show all versions of ci-jenkins-crawler Show documentation
The Crawler for the Jenkins integration for the Continuous Integration Harvester of the Smart Developer Hub project
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.07.14 at 09:08:59 AM UTC
//
package org.smartdeveloperhub.jenkins.crawler.xml.ci;
import java.net.URI;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.jvnet.jaxb2_commons.lang.CopyStrategy;
import org.jvnet.jaxb2_commons.lang.CopyTo;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.HashCode;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBCopyStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
/**
* Java class for SimpleJob complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SimpleJob">
* <complexContent>
* <extension base="{http://www.smartdeveloperhub.org/harvester/ci/model/v1}Job">
* <sequence>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SimpleJob", namespace = "http://www.smartdeveloperhub.org/harvester/ci/model/v1")
@XmlRootElement(name = "simpleJob", namespace = "http://www.smartdeveloperhub.org/harvester/ci/model/v1")
public class SimpleJob
extends Job
implements Cloneable, CopyTo, Equals, HashCode, ToString
{
/**
* Default no-arg constructor
*
*/
public SimpleJob() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public SimpleJob(final URI url, final String id, final String title, final String description, final JobType type, final Codebase codebase, final boolean runnable, final Job.Runs runs, final URI instance) {
super(url, id, title, description, type, codebase, runnable, runs, instance);
}
@Override
public SimpleJob withType(JobType value) {
setType(value);
return this;
}
@Override
public SimpleJob withCodebase(Codebase value) {
setCodebase(value);
return this;
}
@Override
public SimpleJob withRunnable(boolean value) {
setRunnable(value);
return this;
}
@Override
public SimpleJob withRuns(Job.Runs value) {
setRuns(value);
return this;
}
@Override
public SimpleJob withInstance(URI value) {
setInstance(value);
return this;
}
@Override
public SimpleJob withUrl(URI value) {
setUrl(value);
return this;
}
@Override
public SimpleJob withId(String value) {
setId(value);
return this;
}
@Override
public SimpleJob withTitle(String value) {
setTitle(value);
return this;
}
@Override
public SimpleJob withDescription(String value) {
setDescription(value);
return this;
}
public String toString() {
final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
strategy.appendEnd(locator, this, buffer);
return buffer;
}
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
super.appendFields(locator, buffer, strategy);
return buffer;
}
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) {
if (!(object instanceof SimpleJob)) {
return false;
}
if (this == object) {
return true;
}
if (!super.equals(thisLocator, thatLocator, object, strategy)) {
return false;
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
int currentHashCode = super.hashCode(locator, strategy);
return currentHashCode;
}
public int hashCode() {
final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE;
return this.hashCode(null, strategy);
}
public Object clone() {
return copyTo(createNewInstance());
}
public Object copyTo(Object target) {
final CopyStrategy strategy = JAXBCopyStrategy.INSTANCE;
return copyTo(null, target, strategy);
}
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
super.copyTo(locator, draftCopy, strategy);
return draftCopy;
}
public Object createNewInstance() {
return new SimpleJob();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy