Package com.microstrategy.web.objects
Interface WebFenceClusterNode
-
- All Known Implementing Classes:
WebFenceClusterNodeImpl
public interface WebFenceClusterNodeThis interface define a web fence cluster node, since we only need the cluster node name and port, so we don't reuseWebClusterNode.- Since:
- MicroStrategy Web 10.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetNodeName()Return the name of the node.intgetNodePort()Return the port of the node.voidsetNodeName(java.lang.String name)set the name of the node with given argument.voidsetNodePort(int port)set the port of the node with given argument.
-
-
-
Method Detail
-
setNodeName
void setNodeName(java.lang.String name)
set the name of the node with given argument.
-
getNodeName
java.lang.String getNodeName()
Return the name of the node.
-
setNodePort
void setNodePort(int port)
set the port of the node with given argument.
-
getNodePort
int getNodePort()
Return the port of the node.
-
-