de.focus_shift.jollyday.jackson.mapping.Source Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jollyday-jackson Show documentation
Show all versions of jollyday-jackson Show documentation
Jackson based jollyday implementation
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