Package com.microstrategy.web.objects
Interface WebFenceClusterNode
-
- All Known Implementing Classes:
WebFenceClusterNodeImpl
public interface WebFenceClusterNode
This 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.String
getNodeName()
Return the name of the node.int
getNodePort()
Return the port of the node.void
setNodeName(java.lang.String name)
set the name of the node with given argument.void
setNodePort(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.
-
-