Package com.attivio.sdk.esb
Enum DefaultEndpoints.Ports
- java.lang.Object
-
- java.lang.Enum<DefaultEndpoints.Ports>
-
- com.attivio.sdk.esb.DefaultEndpoints.Ports
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DefaultEndpoints.Ports>
- Enclosing class:
- DefaultEndpoints
public static enum DefaultEndpoints.Ports extends java.lang.Enum<DefaultEndpoints.Ports>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description static int
MINIMUM_BASEPORT_DIFF
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getOffset()
java.lang.String
getOffsetAsString()
java.lang.String
getPropertyName()
static DefaultEndpoints.Ports
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DefaultEndpoints.Ports[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASEPORT_OFFSET
public static final DefaultEndpoints.Ports BASEPORT_OFFSET
Offset=0
-
WEBAPPS_PORT_OFFSET
public static final DefaultEndpoints.Ports WEBAPPS_PORT_OFFSET
Offset=0
-
RECEIVER_PORT_OFFSET
public static final DefaultEndpoints.Ports RECEIVER_PORT_OFFSET
Offset=1
-
SECURE_RECEIVER_PORT_OFFSET
public static final DefaultEndpoints.Ports SECURE_RECEIVER_PORT_OFFSET
Offset=2
-
ADMIN_PORT_OFFSET
public static final DefaultEndpoints.Ports ADMIN_PORT_OFFSET
Offset=3
-
REMOTE_JMX_PORT_OFFSET
public static final DefaultEndpoints.Ports REMOTE_JMX_PORT_OFFSET
Offset=4
-
REMOTE_SPRING_PORT_OFFSET
public static final DefaultEndpoints.Ports REMOTE_SPRING_PORT_OFFSET
Offset=6
-
PROCESS_PORT_OFFSET
public static final DefaultEndpoints.Ports PROCESS_PORT_OFFSET
Offset=7
-
PROFILER_OFFSET
public static final DefaultEndpoints.Ports PROFILER_OFFSET
Offset=8
-
NIO_RECEIVER_PORT_OFFSET
public static final DefaultEndpoints.Ports NIO_RECEIVER_PORT_OFFSET
Offset=9
-
PERFMON_REMOTE_CLIENT_OFFSET
public static final DefaultEndpoints.Ports PERFMON_REMOTE_CLIENT_OFFSET
Offset=11
-
SQLSDK_XSERVER_OFFSET
public static final DefaultEndpoints.Ports SQLSDK_XSERVER_OFFSET
Offset=12
-
SQLSDK_SERVER_OFFSET
public static final DefaultEndpoints.Ports SQLSDK_SERVER_OFFSET
Offset=13
-
TEIID_ODBC_OFFSET
public static final DefaultEndpoints.Ports TEIID_ODBC_OFFSET
Teiid server listens on Offset=15 for ODBC connections
-
TEIID_JDBC_OFFSET
public static final DefaultEndpoints.Ports TEIID_JDBC_OFFSET
Teiid server listens on Offset=16 for JDBC connections
-
JDBC_DRIVER_CONTAINER
public static final DefaultEndpoints.Ports JDBC_DRIVER_CONTAINER
com.attivio.connector.remotedriver.server.DriverManagerContainer RMI port
-
TEIID_SERVER_CONTAINER
public static final DefaultEndpoints.Ports TEIID_SERVER_CONTAINER
com.attivio.federation.server.RemoteTeiidServerContainerImpl RMI port
-
HBASE_MINI_CLUSTER_OFFSET
public static final DefaultEndpoints.Ports HBASE_MINI_CLUSTER_OFFSET
com.attivio.federation.server.RemoteTeiidServerContainerImpl RMI port
-
STORE_REST_PORT
public static final DefaultEndpoints.Ports STORE_REST_PORT
Offset=1
-
STORE_API_PORT
public static final DefaultEndpoints.Ports STORE_API_PORT
Offset=0, Cassandra thrift port
-
STORE_STORAGE_PORT
public static final DefaultEndpoints.Ports STORE_STORAGE_PORT
Offset=2
-
STORE_SSL_STORAGE_PORT
public static final DefaultEndpoints.Ports STORE_SSL_STORAGE_PORT
Offset=3
-
STORE_AGENT_CHILD_OFFSET
public static final DefaultEndpoints.Ports STORE_AGENT_CHILD_OFFSET
Offset=4
-
STORE_PERFMON_REMOTE_CLIENT_OFFSET
public static final DefaultEndpoints.Ports STORE_PERFMON_REMOTE_CLIENT_OFFSET
Offset=5
-
STORE_MX4J_TOOL_OFFSET
public static final DefaultEndpoints.Ports STORE_MX4J_TOOL_OFFSET
Offset=7
-
STORE_DB_OFFSET
public static final DefaultEndpoints.Ports STORE_DB_OFFSET
Offset=8
-
ZOO_CLIENT_OFFSET
public static final DefaultEndpoints.Ports ZOO_CLIENT_OFFSET
Configuration Server Offsets.
-
ZOO_QUORUM1_OFFSET
public static final DefaultEndpoints.Ports ZOO_QUORUM1_OFFSET
-
ZOO_QUORUM2_OFFSET
public static final DefaultEndpoints.Ports ZOO_QUORUM2_OFFSET
-
ZOO_AGENT_CHILD_OFFSET
public static final DefaultEndpoints.Ports ZOO_AGENT_CHILD_OFFSET
-
PERFMON_REMOTE_SERVER_OFFSET
public static final DefaultEndpoints.Ports PERFMON_REMOTE_SERVER_OFFSET
Perfmon Server Offsets.
-
PERFMON_AGENT_CHILD_OFFSET
public static final DefaultEndpoints.Ports PERFMON_AGENT_CHILD_OFFSET
-
-
Field Detail
-
MINIMUM_BASEPORT_DIFF
public static final int MINIMUM_BASEPORT_DIFF
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static DefaultEndpoints.Ports[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DefaultEndpoints.Ports c : DefaultEndpoints.Ports.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultEndpoints.Ports valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getOffset
public int getOffset()
-
getOffsetAsString
public java.lang.String getOffsetAsString()
-
getPropertyName
public java.lang.String getPropertyName()
-
-