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

checkmarx.wsdl.portal.CxDateTime Maven / Gradle / Ivy

There is a newer version: 0.4.47
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646
// 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.17 at 10:51:56 PM EST
//


package checkmarx.wsdl.portal;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CxDateTime complex type. * *

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

 * <complexType name="CxDateTime">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Hour" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="Minute" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="Second" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="Year" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CxDateTime", propOrder = { "hour", "minute", "second", "day", "month", "year" }) public class CxDateTime { @XmlElement(name = "Hour") protected int hour; @XmlElement(name = "Minute") protected int minute; @XmlElement(name = "Second") protected int second; @XmlElement(name = "Day") protected int day; @XmlElement(name = "Month") protected int month; @XmlElement(name = "Year") protected int year; /** * Gets the value of the hour property. * */ public int getHour() { return hour; } /** * Sets the value of the hour property. * */ public void setHour(int value) { this.hour = value; } /** * Gets the value of the minute property. * */ public int getMinute() { return minute; } /** * Sets the value of the minute property. * */ public void setMinute(int value) { this.minute = value; } /** * Gets the value of the second property. * */ public int getSecond() { return second; } /** * Sets the value of the second property. * */ public void setSecond(int value) { this.second = value; } /** * Gets the value of the day property. * */ public int getDay() { return day; } /** * Sets the value of the day property. * */ public void setDay(int value) { this.day = value; } /** * Gets the value of the month property. * */ public int getMonth() { return month; } /** * Sets the value of the month property. * */ public void setMonth(int value) { this.month = value; } /** * Gets the value of the year property. * */ public int getYear() { return year; } /** * Sets the value of the year property. * */ public void setYear(int value) { this.year = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy