|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object | +--com.starbase.starteam.ServerAdministration
The ServerAdministration class provides a conventient interface to perform various server level administration commands. The current set of operations are for field customization. Ultimately these methods should hang off of the core Type and Property objects but the refresh issues are too complex to deal with at this time. After calling any of the customization methods one should do a FULL refresh by discarding everything including the Server object itself and start over.
| Field Summary | |
static int |
LOG_ALL
Server log mode - get the entire log file. |
static int |
LOG_ASSERTIONS
Server log mode - get assertions. |
static int |
LOG_EXCEPTIONS
Server log mode - get exceptions. |
static int |
LOG_MESSAGES
Server log mode - get messages. |
static int |
LOG_MODE_ALL
Deprecated. |
static int |
LOG_MODE_ERRORS
Deprecated. |
static int |
LOG_TYPE_SERVER
Server log type (other types to be defined.) |
static int |
LOG_WARNINGS
Server log mode - get warnings. |
static int |
SERVER_LOCKED
Server is locked. |
static int |
SERVER_LOCKED_EXCLUSIVELY
Server is locked exclusively -- only the locker may execute commmands. |
static int |
SERVER_UNLOCKED
Server is unlocked. |
static int |
UNKNOWN
Unknown (uninitialized value). |
| Method Summary | |
void |
addDoubleField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
double defaultValue)
Adds a new floating point double field to the specified Type. |
void |
addDoubleFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
double defaultValue)
Adds a new floating point double field to the specified Type. |
void |
addEnumeratedField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
EnumeratedValue[] enums,
int defaultCode)
Adds a new Enumerated field to the specified Type. |
void |
addEnumeratedFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
EnumeratedValue[] enums,
int defaultCode)
Adds a new Enumerated field to the specified Type. |
void |
addIntegerField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
int defaultValue)
Adds a new Integer field to the specified Type. |
void |
addIntegerFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
int defaultValue)
Adds a new Integer field to the specified Type. |
void |
addRequiredTextField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
int maxLength)
Adds a new required Text field to the specified Type. |
void |
addRequiredTextFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
int maxLength)
Adds a new required Text field to the specified Type. |
void |
addRequiredUserField(Type type,
java.lang.String sqlname,
java.lang.String displayName)
Adds a new required User field to the specified Type. |
void |
addRequiredUserFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames)
Adds a new required User field to the specified Type. |
void |
addTextField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
int maxLength)
Adds a new Text field to the specified Type. |
void |
addTextFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
int maxLength)
Adds a new Text field to the specified Type. |
void |
addTimeField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
OLEDate defaultTime)
Adds a new Date/Time field to the specified Type. |
void |
addTimeFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
OLEDate defaultTime)
Adds a new Date/Time field to the specified Type. |
void |
addUserField(Type type,
java.lang.String sqlname,
java.lang.String displayName)
Adds a new User field to the specified Type. |
void |
addUserFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames)
Adds a new User field to the specified Type. |
void |
discardAccounts()
Discards all cached UserAccount and GroupAccount information. |
void |
enableProperty(Property prop,
boolean enabled)
Set the specified property to enabled or disabled. |
boolean |
equals(java.lang.Object source)
returns true if this object instance is equal to the source |
GroupAccount |
findGroupAccount(int groupID)
Returns the GroupAccount object for the given ID. |
UserAccount |
findUserAccount(int userID)
Returns the User object for the given ID. |
java.lang.String |
generateDiagnosticDump(int minidumptype)
Creates a diagnostic file and places it in the server configurations' log path. |
AclEntry[] |
getACL()
Returns the Access control list for this server. |
ServerConfiguration |
getConfiguration()
Gets the current server configuration options. |
GroupAccount[] |
getGroupAccounts()
Returns all of the active group accounts on the server. |
HiveManager |
getHiveManager()
Gets the HiveManager that manages new vault format hives. |
ServerLicenseInfo |
getLicenseInformation()
Gets information about the licenses registered on this server. |
LicenseUsage |
getLicenseUsage()
Deprecated. |
java.lang.String |
getLog()
Return the server log for this server. |
java.lang.String[] |
getNamedConfigOptions(java.lang.String[] names)
Return a String array of values that matches the input String array of option names. |
SystemPolicy |
getPolicy()
Gets the current system policy options. |
SecurityLogEntry[] |
getSecurityLog(int eventType)
Returns an array of SecurityLogEntry objects for this server, for the specified security event type. |
Server |
getServer()
returns an instance of the Server |
void |
getServerCommandStats(java.io.OutputStream out)
Retrieves the server's command statistics and writes it to the specified output stream. |
int |
getServerLockStatus()
Returns the "locked", "locked exclusively" or "unlocked" status of the server. |
UserAccount[] |
getUserAccounts()
Returns all of the active user accounts on the server. |
int |
hashCode()
returns a unique hash for all instances of this type |
boolean |
hasPermission(int permissions)
Returns true if desired permissions are granted |
boolean |
isRefreshAccountsRequired()
Returns true if a refreshAccounts() operation might have resulting in UserAccount or GroupAccount information being updated; returns false if and only if it is known that the UserAccount and GroupAccount information had not been changed since the last refresh. |
void |
lockServer()
Puts the server in "Locked" mode. |
void |
lockServerExclusively()
Puts the server in "LockedExclusively" mode: only the locker can perform operations. |
void |
modifyDoubleField(Type type,
Property prop,
boolean enabled,
java.lang.String name,
double defaultValue)
Modify a floating point double property for the specified Type. |
void |
modifyDoubleFieldEx(Type type,
Property prop,
boolean enabled,
Translations names,
double defaultValue)
Modify a floating point double property for the specified Type. |
void |
modifyEnumeratedField(Type type,
Property prop,
boolean enabled,
java.lang.String name,
EnumeratedValue[] enums,
int defaultCode)
Modify an Enumerated property for the specified Type. |
void |
modifyEnumeratedFieldEx(Type type,
Property prop,
boolean enabled,
Translations names,
EnumeratedValue[] enums,
int defaultCode)
Deprecated. This method does not change the sort order of any existing EnumeratedValues. Use updateEnumeratedField() instead. |
void |
modifyIntegerField(Type type,
Property prop,
boolean enabled,
java.lang.String name,
int defaultValue)
Modify an Integer property for the specified Type. |
void |
modifyIntegerFieldEx(Type type,
Property prop,
boolean enabled,
Translations names,
int defaultValue)
Modify an Integer property for the specified Type. |
void |
modifyTextField(Type type,
Property prop,
boolean enabled,
java.lang.String name)
Modify a Text property for the specified Type. |
void |
modifyTextFieldEx(Type type,
Property prop,
boolean enabled,
Translations names)
Modify a Text property for the specified Type. |
void |
modifyTimeField(Type type,
Property prop,
boolean enabled,
java.lang.String name,
OLEDate defaultValue)
Modify a Time property for the specified Type. |
void |
modifyTimeFieldEx(Type type,
Property prop,
boolean enabled,
Translations names,
OLEDate defaultValue)
Modify a Time property for the specified Type. |
void |
modifyUserField(Type type,
Property prop,
boolean enabled,
java.lang.String name)
Modify a User property for the specified Type. |
void |
modifyUserFieldEx(Type type,
Property prop,
boolean enabled,
Translations names)
Modify a User property for the specified Type. |
void |
populateAccounts()
Deprecated. |
void |
refreshAccounts()
Updates cached UserAccount and GroupAccount information to reflect recent changes to the repository. |
void |
restartServer()
Shuts down and restarts the server. |
void |
setACL(AclEntry[] acl)
Modify the access control list for this server. |
void |
setConfiguration(ServerConfiguration config)
Saves the given server configuration options. |
void |
setFieldRequired(Property prop,
boolean bRequired)
Change the required/non-required status of a custom-defined User or Text property. |
void |
setNamedConfigOptions(java.util.Hashtable options)
Set a group of named configuration options. |
void |
setNamedConfigOptions(java.lang.String[] names,
java.lang.String[] values)
Set a group of named configuration options. |
void |
setPolicy(SystemPolicy policy)
Saves the given system policy options. |
void |
shutdownServer()
Shuts down the server. |
boolean |
testDirectoryServiceSettings(java.lang.String URL,
int port,
boolean bUseSecureDirectoryService)
Tests this set of Directory Service parameters. |
void |
unlockServer()
Unlocks a server in "Locked" mode. |
void |
updateEnumeratedField(Property prop,
boolean enabled,
Translations names,
EnumeratedValue[] enums,
int defaultCode)
Modifies an existing Enumerated property. |
void |
updateLicenseUsage(java.lang.String keys,
ServerInfo[] servers)
Deprecated. |
void |
writeLogFile(java.io.File out,
int logType,
int logMode)
Retrieves the server log and writes it to the specified file. |
void |
writeServerCommandStats(java.io.File file)
Retrieves the server's command statistics and writes it to the specified file. |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
public static final int UNKNOWN
public static final int SERVER_LOCKED
public static final int SERVER_UNLOCKED
public static final int SERVER_LOCKED_EXCLUSIVELY
public static final int LOG_TYPE_SERVER
public static final int LOG_MODE_ERRORS
public static final int LOG_MODE_ALL
public static final int LOG_ALL
ServerAdministration.writeLogFile(java.io.File, int, int),
Constant Field Valuespublic static final int LOG_MESSAGES
ServerAdministration.writeLogFile(java.io.File, int, int),
Constant Field Valuespublic static final int LOG_WARNINGS
ServerAdministration.writeLogFile(java.io.File, int, int),
Constant Field Valuespublic static final int LOG_EXCEPTIONS
ServerAdministration.writeLogFile(java.io.File, int, int),
Constant Field Valuespublic static final int LOG_ASSERTIONS
ServerAdministration.writeLogFile(java.io.File, int, int),
Constant Field Values| Method Detail |
public Server getServer()
public void addTextField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
int maxLength)
type - The Type object being modifiedsqlname - The database field name for this typedisplayName - The String that will be used when GUIs display the fieldmaxLength - The maximum length of Strings that can be stored in this field
public void addTextFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
int maxLength)
type - The Type object being modifiedsqlname - The database field name for this typedisplayNames - The translations to use for the property display namemaxLength - The maximum length of Strings that can be stored in this field
public void addRequiredTextField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
int maxLength)
type - The Type object being modifiedsqlname - The database field name for this typedisplayName - The String that will be used when GUIs display the fieldmaxLength - The maximum length of Strings that can be stored in this field
public void addRequiredTextFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
int maxLength)
type - The Type object being modifiedsqlname - The database field name for this typedisplayNames - The translations to use for the property display namemaxLength - The maximum length of Strings that can be stored in this field
public void addTimeField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
OLEDate defaultTime)
type - The Type object being modifiedsqlname - The database field name for this typedisplayName - The String that will be used when GUIs display the fielddefaultTime - The default time to use when creating a new item.
public void addTimeFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
OLEDate defaultTime)
type - The Type object being modifiedsqlname - The database field name for this typedisplayNames - The translations to use for the property display namedefaultTime - The default time to use when creating a new item.
public void addIntegerField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
int defaultValue)
type - The Type object being modifiedsqlname - The database field name for this typedisplayName - The String that will be used when GUIs display the fielddefaultValue - The default value to use when creating a new item.
public void addIntegerFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
int defaultValue)
type - The Type object being modifiedsqlname - The database field name for this typedisplayNames - The translations to use for the property display namedefaultValue - The default value to use when creating a new item.
public void addDoubleField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
double defaultValue)
type - The Type object being modifiedsqlname - The database field name for this typedisplayName - The String that will be used when GUIs display the fielddefaultValue - The default value to use when creating a new item.
public void addDoubleFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
double defaultValue)
type - The Type object being modifiedsqlname - The database field name for this typedisplayNames - The translations to use for the property display namedefaultValue - The default value to use when creating a new item.
public void addUserField(Type type,
java.lang.String sqlname,
java.lang.String displayName)
type - The Type object being modifiedsqlname - The database field name for this typedisplayName - The String that will be used when GUIs display the field
public void addUserFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames)
type - The Type object being modifiedsqlname - The database field name for this typedisplayNames - The translations to use for the property display name
public void addRequiredUserField(Type type,
java.lang.String sqlname,
java.lang.String displayName)
type - The Type object being modifiedsqlname - The database field name for this typedisplayName - The String that will be used when GUIs display the field
public void addRequiredUserFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames)
type - The Type object being modifiedsqlname - The database field name for this typedisplayNames - The translations to use for the property display name
public void addEnumeratedField(Type type,
java.lang.String sqlname,
java.lang.String displayName,
EnumeratedValue[] enums,
int defaultCode)
type - The Type object being modifiedsqlname - The database field name for this typedisplayName - The String that will be used when GUIs display the fieldenums - An array of the EnumeratedValues this field will support.defaultCode - The code value of the default EnumeratedValue to use when creating new items of this type
public void addEnumeratedFieldEx(Type type,
java.lang.String sqlname,
Translations displayNames,
EnumeratedValue[] enums,
int defaultCode)
type - The Type object being modifiedsqlname - The database field name for this typedisplayNames - The translations to use for the property display nameenums - An array of the EnumeratedValues this field will support.defaultCode - The code value of the default EnumeratedValue to use when creating new items of this type
public void modifyTextField(Type type,
Property prop,
boolean enabled,
java.lang.String name)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.name - The String that will be used when GUIs display the field
public void modifyTextFieldEx(Type type,
Property prop,
boolean enabled,
Translations names)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.names - The display name translations to use for this property.
public void modifyIntegerField(Type type,
Property prop,
boolean enabled,
java.lang.String name,
int defaultValue)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.name - The new display name for this field.defaultValue - The new default value for this field.
public void modifyIntegerFieldEx(Type type,
Property prop,
boolean enabled,
Translations names,
int defaultValue)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.names - The display name translations to use for this property.defaultValue - The new default value for this field.
public void modifyDoubleField(Type type,
Property prop,
boolean enabled,
java.lang.String name,
double defaultValue)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.name - The new display name for this field.defaultValue - The new default value for this field.
public void modifyDoubleFieldEx(Type type,
Property prop,
boolean enabled,
Translations names,
double defaultValue)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.names - The display name translations to use for this property.defaultValue - The new default value for this field.
public void modifyTimeField(Type type,
Property prop,
boolean enabled,
java.lang.String name,
OLEDate defaultValue)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.name - The new display name for this field.defaultValue - The new default value for this field.
public void modifyTimeFieldEx(Type type,
Property prop,
boolean enabled,
Translations names,
OLEDate defaultValue)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.names - The display name translations to use for this property.defaultValue - The new default value for this field.
public void modifyUserField(Type type,
Property prop,
boolean enabled,
java.lang.String name)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.name - The new display name for this field.
public void modifyUserFieldEx(Type type,
Property prop,
boolean enabled,
Translations names)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.names - The display name translations to use for this property.
public void modifyEnumeratedField(Type type,
Property prop,
boolean enabled,
java.lang.String name,
EnumeratedValue[] enums,
int defaultCode)
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.name - The new display name for this field.enums - The list of enabled Enum objects for this field.defaultCode - The code for the new default Enum.
public void modifyEnumeratedFieldEx(Type type,
Property prop,
boolean enabled,
Translations names,
EnumeratedValue[] enums,
int defaultCode)
Any EnumeratedValues passed in the enums argument that are already legal values for this property are automatically enabled, if necessary. Any existing EnumeratedValues passed that are not passed in the enums argument are automatically disabled, if necessary. Any changes to any of the display names are saved in the property definition. The sort order of existing EnumeratedValues is unchanged.
Any new EnumeratedValues passed in the enum argument are added to the property definition at the end of the list.
type - The Type object being modifiedprop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.names - The display name translations to use for this property.enums - The list of enabled Enum objects for this field.defaultCode - The code for the new default Enum.
public void updateEnumeratedField(Property prop,
boolean enabled,
Translations names,
EnumeratedValue[] enums,
int defaultCode)
The EnumeratedValues for this property must be completely specified; that is, the list must include all existing enumerated values for this property, including both enabled and disabled ones. The list may also include new enumerated values that were not previously valid.
The sort order of the EnumeratedValues in the property definition is updated to reflect the order as specified here.
updateEnumeratedField() does not automatically change the enabled/disabled state of any of the EnumeratedValues provided. You can change the state by calling EnumeratedValue.setEnabled() prior to calling updateEnumeratedField().
Any changes to any of the display names are saved in the property definition.
prop - The Property object being modified.enabled - Specify if the field is not be enabled or disabled.names - The display name translations to use for this property.enums - The list of enabled Enum objects for this field.defaultCode - The code for the new default Enum.
public void setFieldRequired(Property prop,
boolean bRequired)
prop - The Property object being modified.bRequired - Specify if the field is to be required or not.
public void enableProperty(Property prop,
boolean enabled)
prop - the property being modifiedenabled - true if the property is to be enabled and false otherwisepublic java.lang.String getLog()
ServerAdministration.writeLogFile(java.io.File, int, int)
public void writeLogFile(java.io.File out,
int logType,
int logMode)
throws java.io.IOException
out - The log file location.logType - Log type (LOG_TYPE_SERVER, other types to be defined.)logMode - Log mode. Valid values are:
1. LOG_ALL, LOG_ASSERTIONS, LOG_EXCEPTIONS, LOG_MESSAGES, LOG_WARNINGS or
a combination of them.
2. LOG_MODE_ALL or LOG_MODE_ERRORS (note these are deprecated.)
java.io.IOExceptionServerAdministration.getLog(),
ServerAdministration.LOG_ALL,
ServerAdministration.LOG_ASSERTIONS,
ServerAdministration.LOG_EXCEPTIONS,
ServerAdministration.LOG_MESSAGES,
ServerAdministration.LOG_WARNINGSpublic SecurityLogEntry[] getSecurityLog(int eventType)
eventType - an integer value that specifies the desired security event type. Must be one of the values defined in SecurityLogEntry.SecurityEventType.
SecurityLogEntry.SecurityEventTypepublic ServerLicenseInfo getLicenseInformation()
ServerLicenseInfo,
SystemRevisionNumbers#REV_SERVER_LICENSE_INFO_SUPPORTEDpublic HiveManager getHiveManager()
public boolean testDirectoryServiceSettings(java.lang.String URL,
int port,
boolean bUseSecureDirectoryService)
URL - port - bUseSecureDirectoryService -
public ServerConfiguration getConfiguration()
public void setConfiguration(ServerConfiguration config)
config - The current server configuration options.ServerConfigurationpublic SystemPolicy getPolicy()
SystemPolicypublic void setPolicy(SystemPolicy policy)
policy - The current system policy options.SystemPolicy
public void getServerCommandStats(java.io.OutputStream out)
throws java.io.IOException
out - the output stream to which the commands statistics
will be written.
java.io.IOExceptionSupportedFeatures.hasServerCommandStats()
public void writeServerCommandStats(java.io.File file)
throws java.io.IOException
file - the file to which the commands statistics
will be written.
java.io.IOExceptionpublic int getServerLockStatus()
ServerAdministration.SERVER_LOCKED,
ServerAdministration.SERVER_UNLOCKED,
ServerAdministration.SERVER_LOCKED_EXCLUSIVELY,
ServerAdministration.lockServer(),
ServerAdministration.lockServerExclusively(),
ServerAdministration.unlockServer(),
SupportedFeatures.hasServerLockStatus()public void lockServer()
ServerAdministration.getServerLockStatus(),
ServerAdministration.lockServerExclusively(),
ServerAdministration.unlockServer()public void lockServerExclusively()
ServerAdministration.getServerLockStatus(),
ServerAdministration.lockServer(),
ServerAdministration.unlockServer(),
SupportedFeatures.hasServerExclusiveLock()public void unlockServer()
ServerAdministration.getServerLockStatus(),
ServerAdministration.lockServer(),
ServerAdministration.lockServerExclusively()public void shutdownServer()
Server instance rather useless, as the StarTeam
Server it was connected to will be shut down.
SupportedFeatures.hasServerShutdown()public void restartServer()
Server
instance rather useless as the StarTeam Server it was connected to will
be shut down and restarted.
SupportedFeatures.hasServerShutdown()public boolean hasPermission(int permissions)
permissions - the desired permissionsPermissionpublic AclEntry[] getACL()
public void setACL(AclEntry[] acl)
acl - the new access control list or null if to be droppedpublic void discardAccounts()
ServerAdministration.getUserAccounts(),
ServerAdministration.getGroupAccounts(),
ServerAdministration.refreshAccounts()public boolean isRefreshAccountsRequired()
ServerAdministration.refreshAccounts(),
Server.enableMPX()public void populateAccounts()
ServerAdministration.getUserAccounts(),
ServerAdministration.getGroupAccounts()public void refreshAccounts()
ServerAdministration.isRefreshAccountsRequired(),
ServerAdministration.populateAccounts(),
ServerAdministration.discardAccounts()public UserAccount[] getUserAccounts()
public GroupAccount[] getGroupAccounts()
public UserAccount findUserAccount(int userID)
User object for the given ID.
userID - the user ID in question
UserAccount object with the given ID.
Will return null if not found.ServerAdministration.getUserAccounts()public GroupAccount findGroupAccount(int groupID)
GroupAccount object for the given ID.
groupID - the Group ID in question
GroupAccount object with the given ID.
Will return null if not found.ServerAdministration.getGroupAccounts()public LicenseUsage getLicenseUsage()
public void updateLicenseUsage(java.lang.String keys,
ServerInfo[] servers)
public java.lang.String[] getNamedConfigOptions(java.lang.String[] names)
names - the key values of the options to retrieve.
public void setNamedConfigOptions(java.lang.String[] names,
java.lang.String[] values)
names - names of the options whose values are set.values - values of the options to be set, in same sequence a names.public void setNamedConfigOptions(java.util.Hashtable options)
options - Hashtable of name/value pairs.public java.lang.String generateDiagnosticDump(int minidumptype)
minidumptype - A mini-dump type
public boolean equals(java.lang.Object source)
equals in class java.lang.Objectsource - Object the source to comapre with
public int hashCode()
hashCode in class java.lang.Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||