Package com.microstrategy.webapi.acm
Class ACMClusterInfo
- java.lang.Object
-
- com.microstrategy.webapi.acm.ACMClusterInfo
-
public class ACMClusterInfo extends java.lang.Object
ACMClusterInfo marries the IServer connectivity info and the application type (the type of the client application). This information is used to create and close sessions with IServers
-
-
Field Summary
Fields Modifier and Type Field Description int
mApplicationType
The application type of the client application.java.lang.String
mClusterName
The cluster name that the IServer belongs tojava.lang.String
mMachineName
The IServer machine namejava.lang.Integer
mMachinePort
The IServer port
-
Constructor Summary
Constructors Constructor Description ACMClusterInfo(java.lang.String iMachineName, int iMachinePort, java.lang.String iClusterName, int iApplicationType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object iThat)
int
hashCode()
-
-
-
Field Detail
-
mMachineName
public final java.lang.String mMachineName
The IServer machine name
-
mMachinePort
public final java.lang.Integer mMachinePort
The IServer port
-
mClusterName
public final java.lang.String mClusterName
The cluster name that the IServer belongs to
-
mApplicationType
public final int mApplicationType
The application type of the client application. This number gets displayed in the User Monitor in MSTR Developer and allows administrators to understand what components are connecting to the IServer
-
-