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

org.openfuxml.addon.jsfapp.data.jaxb.Ofxinjection Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2011.04.15 at 10:14:57 PM MESZ 
//


package org.openfuxml.addon.jsfapp.data.jaxb;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.openfuxml.org/jsfapp}iframe"/>
 *         <element ref="{http://www.openfuxml.org/jsfapp}jsf"/>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="xsrc" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "iframe", "jsf" }) @XmlRootElement(name = "ofxinjection") public class Ofxinjection implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected Iframe iframe; @XmlElement(required = true) protected Jsf jsf; @XmlAttribute(name = "id") protected String id; @XmlAttribute(name = "xsrc") protected String xsrc; /** * Gets the value of the iframe property. * * @return * possible object is * {@link Iframe } * */ public Iframe getIframe() { return iframe; } /** * Sets the value of the iframe property. * * @param value * allowed object is * {@link Iframe } * */ public void setIframe(Iframe value) { this.iframe = value; } public boolean isSetIframe() { return (this.iframe!= null); } /** * Gets the value of the jsf property. * * @return * possible object is * {@link Jsf } * */ public Jsf getJsf() { return jsf; } /** * Sets the value of the jsf property. * * @param value * allowed object is * {@link Jsf } * */ public void setJsf(Jsf value) { this.jsf = value; } public boolean isSetJsf() { return (this.jsf!= null); } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } public boolean isSetId() { return (this.id!= null); } /** * Gets the value of the xsrc property. * * @return * possible object is * {@link String } * */ public String getXsrc() { return xsrc; } /** * Sets the value of the xsrc property. * * @param value * allowed object is * {@link String } * */ public void setXsrc(String value) { this.xsrc = value; } public boolean isSetXsrc() { return (this.xsrc!= null); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy