org.hpccsystems.ws.client.platform.DFUDataColumnAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wsclient Show documentation
Show all versions of wsclient Show documentation
This project allows a user to interact with ESP services in a controlled manner. The API calls available under org.hpccsystems.ws.client.platform allow for a user to target ESP's across multiple environments running a range of hpccsystems-platform versions. There is no guarantee that if a user utilizes org.hpccsystems.ws.client.gen generated stub code from wsdl, that the calls will be backwards compatible with older hpccsystems-platform versions.
package org.hpccsystems.ws.client.platform;
import java.util.Arrays;
import java.util.List;
public class DFUDataColumnAnnotation
{
private final String name;
private final List parameters;
/**
* Instantiates a new DFU data column annotation.
*
* @param name
* the name
* @param parameters
* the parameters
*/
public DFUDataColumnAnnotation(final String name, final List parameters)
{
this.name = name;
this.parameters = parameters;
}
/**
* Gets the name.
*
* @return the name
*/
public String getName()
{
return name;
}
/**
* Gets the parameters.
*
* @return the parameters
*/
public List getParameters()
{
return parameters;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
public String toString()
{
StringBuffer sb=new StringBuffer();
sb.append("name:").append(String.valueOf(name));
sb.append(" parameters:").append(Arrays.toString(parameters.toArray()));
return sb.toString();
}
}