Package com.saperion.intf
Interface SaSystemInfo
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SaSystemInfoImpl
public interface SaSystemInfo extends java.io.Serializable
This class holds information about the running system. Information are e.g. JMX port, number of maximal threads and if the system is a multi tenant system.- Author:
- rbo
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SaSystemInfo.RMIFeatures
Features, that can run on RMI server.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SaFailoverInfo
getFailoverInfo()
Reads the failover informations.int
getJMXPort()
int
getMaxThreads()
java.util.List<SaSystemInfo.RMIFeatures>
getRunningFeatures()
int
getSemaphoreCount()
int
getWrapperCount()
boolean
isMultiMandant()
-
-
-
Method Detail
-
getWrapperCount
int getWrapperCount()
- Returns:
- Wrapper count
-
getSemaphoreCount
int getSemaphoreCount()
- Returns:
- Semaphore count
-
getJMXPort
int getJMXPort()
- Returns:
- JMX port
-
getMaxThreads
int getMaxThreads()
- Returns:
- Max threads
-
getRunningFeatures
java.util.List<SaSystemInfo.RMIFeatures> getRunningFeatures()
- Returns:
- Running features on RMI server
-
isMultiMandant
boolean isMultiMandant()
- Returns:
- true if system is a multimandant system, otherwise false.
-
getFailoverInfo
SaFailoverInfo getFailoverInfo()
Reads the failover informations.- Returns:
- Failover informations
-
-