Class PortUserProxy
- java.lang.Object
-
- org.marketcetera.util.ws.stateful.PortUserProxy
-
- All Implemented Interfaces:
UsesPort
public class PortUserProxy extends Object implements UsesPort
Allows a port that is implicitly used by the system to be identified.- Since:
- $Release$
- Version:
- $Id: PortUserProxy.java 17872 2019-08-07 18:46:33Z colin $
- Author:
- Colin DuPlantis
-
-
Field Summary
Fields Modifier and Type Field Description private Stringdescriptiondescription valueprivate intportport value
-
Constructor Summary
Constructors Constructor Description PortUserProxy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Get the description value.intgetPort()Get the port value.Collection<PortDescriptor>getPortDescriptors()Get the ports that this implementor uses.voidsetDescription(String inDescription)Sets the description value.voidsetPort(int inPort)Sets the port value.
-
-
-
Field Detail
-
port
private int port
port value
-
description
private String description
description value
-
-
Method Detail
-
getPortDescriptors
public Collection<PortDescriptor> getPortDescriptors()
Description copied from interface:UsesPortGet the ports that this implementor uses.- Specified by:
getPortDescriptorsin interfaceUsesPort- Returns:
- a
Collection<PortDescriptor>value
-
getPort
public int getPort()
Get the port value.- Returns:
- a
intvalue
-
setPort
public void setPort(int inPort)
Sets the port value.- Parameters:
inPort- aintvalue
-
getDescription
public String getDescription()
Get the description value.- Returns:
- a
Stringvalue
-
setDescription
public void setDescription(String inDescription)
Sets the description value.- Parameters:
inDescription- aStringvalue
-
-