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

de.focus_shift.jollyday.jackson.mapping.Source Maven / Gradle / Ivy

The newest version!
package de.focus_shift.jollyday.jackson.mapping;

import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlText;


/**
 * 

Java class for Source complex type. * *

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

 * <complexType name="Source">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *       <attribute name="of" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
*/ public class Source { @JacksonXmlText protected String value; @JacksonXmlProperty(localName = "of", isAttribute = true) protected String of; /** * Gets the value of the value property. * * @return possible object is * {@link String } */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value allowed object is * {@link String } */ public void setValue(String value) { this.value = value; } /** * Gets the value of the of property. * * @return possible object is * {@link String } */ public String getOf() { return of; } /** * Sets the value of the of property. * * @param value allowed object is * {@link String } */ public void setOf(String value) { this.of = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy