javax.wsdl.Port 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 javax.wsdl;
/**
* This interface represents a port, an endpoint for the
* functionality described by a particular port type.
*
* @author Paul Fremantle
* @author Nirmal Mukhi
* @author Matthew J. Duftler
*/
public interface Port extends WSDLElement
{
/**
* Set the name of this port.
*
* @param name the desired name
*/
void setName(String name);
/**
* Get the name of this port.
*
* @return the port name
*/
String getName();
/**
* Set the binding this port should refer to.
*
* @param binding the desired binding
*/
void setBinding(Binding binding);
/**
* Get the binding this port refers to.
*
* @return the binding associated with this port
*/
Binding getBinding();
}