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

com.glookast.api.capture.info.RequestDuration Maven / Gradle / Ivy

The newest version!

package com.glookast.api.capture.info;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for RequestDuration complex type. * *

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

 * <complexType name="RequestDuration">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RequestDuration", propOrder = { "duration" }) public class RequestDuration implements Serializable { protected int duration; /** * Default no-arg constructor * */ public RequestDuration() { super(); } /** * Fully-initialising value constructor * */ public RequestDuration(final int duration) { this.duration = duration; } /** * Gets the value of the duration property. * */ public int getDuration() { return duration; } /** * Sets the value of the duration property. * */ public void setDuration(int value) { this.duration = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy