
org.ikasan.mapping.model.NamedResultImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ikasan-mapping Show documentation
Show all versions of ikasan-mapping Show documentation
A library for managing mapping configurations for the Ikasan platform
The newest version!
package org.ikasan.mapping.model;
import org.ikasan.spec.mapping.NamedResult;
/**
* Created by Ikasan Development Team on 16/05/2017.
*/
public class NamedResultImpl implements NamedResult
{
private String name;
private String value;
public NamedResultImpl(String name, String value)
{
this.name = name;
this.value = value;
}
public String getName()
{
return name;
}
public String getValue()
{
return value;
}
@Override
public String toString()
{
return "NamedResultImpl{" +
"name='" + name + '\'' +
", value='" + value + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy