com.tibco.xmlns.applicationmanagement.Bwprocess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-management Show documentation
Show all versions of application-management Show documentation
The targetNamespace of this schema is "http://www.tibco.com/xmlns/ApplicationManagement"
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.01.23 at 10:11:20 AM CET
//
package com.tibco.xmlns.applicationmanagement;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* 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="starter" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="maxJob" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/>
* <element name="activation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="flowLimit" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"starter",
"enabled",
"maxJob",
"activation",
"flowLimit"
})
@XmlRootElement(name = "bwprocess")
public class Bwprocess {
@XmlElement(required = true, defaultValue = "")
protected String starter;
@XmlElement(defaultValue = "true")
protected Boolean enabled;
@XmlElement(defaultValue = "0")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger maxJob;
@XmlElement(defaultValue = "true")
protected Boolean activation;
@XmlElement(defaultValue = "0")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger flowLimit;
@XmlAttribute(required = true)
protected String name;
/**
* Gets the value of the starter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStarter() {
return starter;
}
/**
* Sets the value of the starter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStarter(String value) {
this.starter = value;
}
/**
* Gets the value of the enabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnabled() {
return enabled;
}
/**
* Sets the value of the enabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnabled(Boolean value) {
this.enabled = value;
}
/**
* Gets the value of the maxJob property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMaxJob() {
return maxJob;
}
/**
* Sets the value of the maxJob property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMaxJob(BigInteger value) {
this.maxJob = value;
}
/**
* Gets the value of the activation property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isActivation() {
return activation;
}
/**
* Sets the value of the activation property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setActivation(Boolean value) {
this.activation = value;
}
/**
* Gets the value of the flowLimit property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getFlowLimit() {
return flowLimit;
}
/**
* Sets the value of the flowLimit property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setFlowLimit(BigInteger value) {
this.flowLimit = 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;
}
}