CustomAction.java
/*
* Copyright (C) 2017 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
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;
}
}