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
package io.atlasmap.v2;

import java.io.Serializable;

public class CustomAction extends Action implements Serializable {

    private static final long serialVersionUID = 1L;

    protected String name;

    protected String className;

    protected String methodName;

    protected FieldType inputFieldType;

    protected FieldType outputFieldType;

    /**
     * Gets the value of the name property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getName() {
        return name;
    }

    /**
     * Sets the value of the name property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setName(String value) {
        this.name = value;
    }

    /**
     * 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