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

org.jooq.conf.MappedTable Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.11.21 at 05:21:45 PM CET 
//


package org.jooq.conf;

import java.io.Serializable;
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 MappedTable complex type. * *

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

 * <complexType name="MappedTable">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="input" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="output" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MappedTable", propOrder = { }) @SuppressWarnings({ "all" }) public class MappedTable extends SettingsBase implements Serializable, Cloneable { private final static long serialVersionUID = 350L; @XmlElement(required = true) protected String input; @XmlElement(required = true) protected String output; /** * Gets the value of the input property. * * @return * possible object is * {@link String } * */ public String getInput() { return input; } /** * Sets the value of the input property. * * @param value * allowed object is * {@link String } * */ public void setInput(String value) { this.input = value; } /** * Gets the value of the output property. * * @return * possible object is * {@link String } * */ public String getOutput() { return output; } /** * Sets the value of the output property. * * @param value * allowed object is * {@link String } * */ public void setOutput(String value) { this.output = value; } public MappedTable withInput(String value) { setInput(value); return this; } public MappedTable withOutput(String value) { setOutput(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy