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

org.apache.cxf.systests.java2ws.SayHi Maven / Gradle / Ivy

The newest version!

package org.apache.cxf.systests.java2ws;

import java.util.Date;
import jakarta.annotation.Generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3._2001.xmlschema.Adapter1;


/**
 * 

Java class for sayHi complex type

. * *

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

* *
{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "sayHi", propOrder = { "text", "date" }) @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") public class SayHi { @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") protected String text; @XmlElement(type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") protected Date date; /** * Gets the value of the text property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") public String getText() { return text; } /** * Sets the value of the text property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") public void setText(String value) { this.text = value; } /** * Gets the value of the date property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") public Date getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:45:50-05:00") public void setDate(Date value) { this.date = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy