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

org.apache.cxf.ws.eventing.Duration Maven / Gradle / Ivy

There is a newer version: 4.0.5
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.03.06 at 06:32:18 PM EST 
//


package org.apache.cxf.ws.eventing;

import java.util.HashMap;
import java.util.Map;
import javax.xml.namespace.QName;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAnyAttribute;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;


/**
 * 

Java class for Duration complex type. * *

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

 * <complexType name="Duration">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2011/03/ws-evt>NonNegativeDurationType">
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Duration", propOrder = { "value" }) public class Duration { @XmlValue protected javax.xml.datatype.Duration value; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Sets the value of the value property. * * @param value * allowed object is * {@link javax.xml.datatype.Duration } * */ public void setValue(javax.xml.datatype.Duration value) { this.value = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** * Gets the value of the value property. * */ public javax.xml.datatype.Duration getValue() { return value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy