co.com.bancolombia.models.TemplateTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of converter-manager-api Show documentation
Show all versions of converter-manager-api Show documentation
Messaging Converter Manager is a library that aims to abstract different implementations for messaging transformation.
The newest version!
package co.com.bancolombia.models;
import co.com.bancolombia.api.TemplateValidations;
import lombok.*;
import java.util.TreeMap;
@Builder
@Data
@Getter
@NoArgsConstructor
public class TemplateTransaction extends TreeMap {
@Builder(toBuilder = true)
@Data
@Getter
@NoArgsConstructor
@AllArgsConstructor
public static class ResourceTemplate {
private String transactionName;
private String channel;
private String transaction;
/**
* @param templateIn.
* @deprecated reason this parameter is renamed
* {will be removed in next version}
* use templateJsonToXml instead.
*/
@Deprecated
private String templateIn;
private String templateJsonToXml;
private String templateJsonToXmlError;
/**
* @param templateOut.
* @deprecated reason this parameter is renamed
* {will be removed in next version}
* use templateXmlToJson instead.
*/
@Deprecated
private String templateOut;
private String templateXmlToObject;
/**
* @param templateError.
* @deprecated reason this parameter is renamed
* {will be removed in next version}
* use templateXmlToJsonError instead.
*/
@Deprecated
private String templateError;
private String templateXmlToObjectError;
private TemplateValidations templateValidations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy