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

se.swedenconnect.schemas.dss_1_0.AdditionalTimeInfo Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.10.06 at 01:06:56 PM CEST 
//


package se.swedenconnect.schemas.dss_1_0;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for AdditionalTimeInfoType complex type. * *

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

 * <complexType name="AdditionalTimeInfoType">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>dateTime">
 *       <attribute name="Type" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="Ref" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AdditionalTimeInfoType", propOrder = { "value" }) @XmlRootElement(name = "AdditionalTimeInfo") public class AdditionalTimeInfo { @XmlValue @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar value; @XmlAttribute(name = "Type", required = true) @XmlSchemaType(name = "anyURI") protected String type; @XmlAttribute(name = "Ref") protected String ref; /** * Gets the value of the value property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setValue(XMLGregorianCalendar value) { this.value = value; } public boolean isSetValue() { return (this.value!= null); } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } public boolean isSetType() { return (this.type!= null); } /** * Gets the value of the ref property. * * @return * possible object is * {@link String } * */ public String getRef() { return ref; } /** * Sets the value of the ref property. * * @param value * allowed object is * {@link String } * */ public void setRef(String value) { this.ref = value; } public boolean isSetRef() { return (this.ref!= null); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy