com.ibm.wsdl.InputImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libre-wsdl4j Show documentation
Show all versions of libre-wsdl4j Show documentation
Open and Free WSDL library: Web Services Description Language. Libre-wsdl4j is a fork of WSDL4J 1.6.3. WSL4j is a Java stub generator for WSDL. Many software projects still depends on WSL4j, so the idea is that libre-wsdl4j should be an actively maintained version of this software on GitHub. "WSDL, that's an anchronym i haven't heard in almost ten years." Still big in the enterprise world" - comments on the Internet.
The newest version!
/*
* (c) Copyright IBM Corp 2001, 2006
*/
package com.ibm.wsdl;
import java.util.*;
import javax.wsdl.*;
/**
* This class represents an input message, and contains the name
* of the input and the message itself.
*
* @author Matthew J. Duftler
*/
public class InputImpl extends AbstractWSDLElement implements Input
{
protected String name = null;
protected Message message = null;
protected List nativeAttributeNames =
Arrays.asList(Constants.INPUT_ATTR_NAMES);
public static final long serialVersionUID = 1;
/**
* Set the name of this input message.
*
* @param name the desired name
*/
@Override
public void setName(String name)
{
this.name = name;
}
/**
* Get the name of this input message.
*
* @return the input message name
*/
public String getName()
{
return name;
}
@Override
public void setMessage(Message message)
{
this.message = message;
}
public Message getMessage()
{
return message;
}
/**
* Get the list of local attribute names defined for this element in
* the WSDL specification.
*
* @return a List of Strings, one for each local attribute name
*/
public List getNativeAttributeNames()
{
return nativeAttributeNames;
}
@Override
public String toString()
{
StringBuffer strBuf = new StringBuffer();
strBuf.append("Input: name=" + name);
if (message != null)
{
strBuf.append("\n" + message);
}
String superString = super.toString();
if(!superString.equals(""))
{
strBuf.append("\n");
strBuf.append(superString);
}
return strBuf.toString();
}
}