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

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

There is a newer version: 2.5.2
Show newest version
package io.atlasmap.v2;

import java.io.Serializable;

import com.fasterxml.jackson.annotation.JsonPropertyDescription;
public class Format extends Action implements Serializable {

    private static final long serialVersionUID = 1L;

    protected String template;

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

    /**
     * Sets the value of the template property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    @JsonPropertyDescription("The template string")
    @AtlasActionProperty(title = "Template", type = FieldType.STRING)
    public void setTemplate(String value) {
        this.template = value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy