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

org.hpccsystems.ws.client.platform.DFUDataColumnAnnotation Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 9.6.12-1
Show newest version
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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy