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

org.dmtf.wsman.ConnectionRetryType 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: 2015.08.05 at 05:23:55 PM EDT 
//


package org.dmtf.wsman;

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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ConnectionRetryType complex type. * *

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

 * <complexType name="ConnectionRetryType">
 *   <simpleContent>
 *     <extension base="<http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd>attributableDuration">
 *       <attribute name="Total" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConnectionRetryType") public class ConnectionRetryType extends AttributableDuration { @XmlAttribute(name = "Total") @XmlSchemaType(name = "unsignedLong") protected BigInteger total; /** * Gets the value of the total property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTotal() { return total; } /** * Sets the value of the total property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTotal(BigInteger value) { this.total = value; } public boolean isSetTotal() { return (this.total!= null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy