org.plasma.runtime.Concurrency Maven / Gradle / Ivy
//
// 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: 2017.11.25 at 12:40:32 PM MST
//
package org.plasma.runtime;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Concurrency complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Concurrency">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="pessimisticLockTimeoutMillis" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Concurrency")
public class Concurrency {
@XmlAttribute(name = "pessimisticLockTimeoutMillis", required = true)
protected long pessimisticLockTimeoutMillis;
/**
* Gets the value of the pessimisticLockTimeoutMillis property.
*
*/
public long getPessimisticLockTimeoutMillis() {
return pessimisticLockTimeoutMillis;
}
/**
* Sets the value of the pessimisticLockTimeoutMillis property.
*
*/
public void setPessimisticLockTimeoutMillis(long value) {
this.pessimisticLockTimeoutMillis = value;
}
}