io.atlasmap.v2.ActionDetail Maven / Gradle / Ivy
//
// 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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import com.fasterxml.jackson.annotation.JsonRootName;
/**
* Java class for ActionDetail complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ActionDetail">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Parameters" type="{http://atlasmap.io/v2}ActionParameters" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="className" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="method" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="sourceType" type="{http://atlasmap.io/v2}FieldType" />
* <attribute name="targetType" type="{http://atlasmap.io/v2}FieldType" />
* <attribute name="sourceCollectionType" type="{http://atlasmap.io/v2}CollectionType" />
* <attribute name="targetCollectionType" type="{http://atlasmap.io/v2}CollectionType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ActionDetail", propOrder = {
"parameters"
})
@XmlRootElement(name = "ActionDetail")
@JsonRootName("ActionDetail")
public class ActionDetail
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Parameters")
protected ActionParameters parameters;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "className")
protected String className;
@XmlAttribute(name = "method")
protected String method;
@XmlAttribute(name = "sourceType")
protected FieldType sourceType;
@XmlAttribute(name = "targetType")
protected FieldType targetType;
@XmlAttribute(name = "sourceCollectionType")
protected CollectionType sourceCollectionType;
@XmlAttribute(name = "targetCollectionType")
protected CollectionType targetCollectionType;
/**
* Gets the value of the parameters property.
*
* @return
* possible object is
* {@link ActionParameters }
*
*/
public ActionParameters getParameters() {
return parameters;
}
/**
* Sets the value of the parameters property.
*
* @param value
* allowed object is
* {@link ActionParameters }
*
*/
public void setParameters(ActionParameters value) {
this.parameters = value;
}
/**
* 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 method property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMethod() {
return method;
}
/**
* Sets the value of the method property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMethod(String value) {
this.method = value;
}
/**
* Gets the value of the sourceType property.
*
* @return
* possible object is
* {@link FieldType }
*
*/
public FieldType getSourceType() {
return sourceType;
}
/**
* Sets the value of the sourceType property.
*
* @param value
* allowed object is
* {@link FieldType }
*
*/
public void setSourceType(FieldType value) {
this.sourceType = value;
}
/**
* Gets the value of the targetType property.
*
* @return
* possible object is
* {@link FieldType }
*
*/
public FieldType getTargetType() {
return targetType;
}
/**
* Sets the value of the targetType property.
*
* @param value
* allowed object is
* {@link FieldType }
*
*/
public void setTargetType(FieldType value) {
this.targetType = value;
}
/**
* Gets the value of the sourceCollectionType property.
*
* @return
* possible object is
* {@link CollectionType }
*
*/
public CollectionType getSourceCollectionType() {
return sourceCollectionType;
}
/**
* Sets the value of the sourceCollectionType property.
*
* @param value
* allowed object is
* {@link CollectionType }
*
*/
public void setSourceCollectionType(CollectionType value) {
this.sourceCollectionType = value;
}
/**
* Gets the value of the targetCollectionType property.
*
* @return
* possible object is
* {@link CollectionType }
*
*/
public CollectionType getTargetCollectionType() {
return targetCollectionType;
}
/**
* Sets the value of the targetCollectionType property.
*
* @param value
* allowed object is
* {@link CollectionType }
*
*/
public void setTargetCollectionType(CollectionType value) {
this.targetCollectionType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy