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

io.atlasmap.v2.CustomAction Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.05.02 at 12:29:58 PM EDT 
//


package io.atlasmap.v2;

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.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>
 *     <extension base="{http://atlasmap.io/v2}Action">
 *       <attribute name="className" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="methodName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="inputFieldType" type="{http://atlasmap.io/v2}FieldType" />
 *       <attribute name="outputFieldType" type="{http://atlasmap.io/v2}FieldType" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "CustomAction") public class CustomAction extends Action implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "className") protected String className; @XmlAttribute(name = "methodName") protected String methodName; @XmlAttribute(name = "inputFieldType") protected FieldType inputFieldType; @XmlAttribute(name = "outputFieldType") protected FieldType outputFieldType; /** * Gets the value of the className property. * * @return * possible object is * {@link String } * */ public String getClassName() { return className; } /** * Sets the value of the className property. * * @param value * allowed object is * {@link String } * */ public void setClassName(String value) { this.className = value; } /** * Gets the value of the methodName property. * * @return * possible object is * {@link String } * */ public String getMethodName() { return methodName; } /** * Sets the value of the methodName property. * * @param value * allowed object is * {@link String } * */ public void setMethodName(String value) { this.methodName = value; } /** * Gets the value of the inputFieldType property. * * @return * possible object is * {@link FieldType } * */ public FieldType getInputFieldType() { return inputFieldType; } /** * Sets the value of the inputFieldType property. * * @param value * allowed object is * {@link FieldType } * */ public void setInputFieldType(FieldType value) { this.inputFieldType = value; } /** * Gets the value of the outputFieldType property. * * @return * possible object is * {@link FieldType } * */ public FieldType getOutputFieldType() { return outputFieldType; } /** * Sets the value of the outputFieldType property. * * @param value * allowed object is * {@link FieldType } * */ public void setOutputFieldType(FieldType value) { this.outputFieldType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy