|
RSE Release 2.0 |
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of IRSESystemType in org.eclipse.rse.core |
|---|
| Classes in org.eclipse.rse.core that implement IRSESystemType | |
|---|---|
class |
AbstractRSESystemType
Abstract base class holding core functionality of a system type. |
| Fields in org.eclipse.rse.core declared as IRSESystemType | |
|---|---|
static IRSESystemType |
PasswordPersistenceManager.DEFAULT_SYSTEM_TYPE
|
| Methods in org.eclipse.rse.core that return IRSESystemType | |
|---|---|
IRSESystemType[] |
PasswordPersistenceManager.getRegisteredSystemTypes()
Retrieve the list of registered system types |
IRSESystemType |
IRSECoreRegistry.getSystemType(String name)
Deprecated. Use IRSECoreRegistry.getSystemTypeById(String). |
IRSESystemType |
IRSECoreRegistry.getSystemTypeById(String systemTypeId)
Returns a system type object given by the id. |
IRSESystemType[] |
IRSECoreRegistry.getSystemTypes()
Returns all defined system types. |
IRSESystemType[] |
IRSESystemTypeProvider.getSystemTypesForRegistration()
Returns a list of possible RSE system types to register at initialization of the RSE core system. |
| Methods in org.eclipse.rse.core with parameters of type IRSESystemType | |
|---|---|
SystemSignonInformation |
PasswordPersistenceManager.find(IRSESystemType systemtype,
String hostname,
String userid)
Find the persisted password for the specified systemtype, hostname and userid. |
SystemSignonInformation |
PasswordPersistenceManager.find(IRSESystemType systemtype,
String hname,
String userid,
boolean checkDefault)
Find the persisted password for the specified systemtype, hostname and userid. |
static String |
RSEPreferencesManager.getDefaultUserId(IRSESystemType systemType)
Gets the default user id for a given system type. |
static boolean |
RSEPreferencesManager.getIsSystemTypeEnabled(IRSESystemType systemType)
Gets the enabled state for a particular system type. |
boolean |
PasswordPersistenceManager.isUserIDCaseSensitive(IRSESystemType systemType)
Helper method for determining if system type uses case sensitive user IDs |
boolean |
SystemTypeMatcher.matches(IRSESystemType systemType)
Checks if the specified system type is matched by this pattern. |
boolean |
PasswordPersistenceManager.passwordExists(IRSESystemType systemtype,
String hostname,
String userid)
Check if a password entry exists for the specified system type, hostname and userid. |
boolean |
PasswordPersistenceManager.passwordExists(IRSESystemType systemtype,
String hname,
String userid,
boolean checkDefault)
Check if a password entry exists for the specified system type, hostname and userid. |
void |
PasswordPersistenceManager.remove(IRSESystemType systemtype,
String hname,
String userid)
Remove the entry from the keyring that matches the hostname, userid and system type parameters. |
static void |
RSEPreferencesManager.setDefaultUserId(IRSESystemType systemType,
String userId)
Sets the default userId for the given system type. |
static void |
RSEPreferencesManager.setIsSystemTypeEnabled(IRSESystemType systemType,
boolean isEnabled)
Sets if a system type is enabled. |
| Uses of IRSESystemType in org.eclipse.rse.core.model |
|---|
| Fields in org.eclipse.rse.core.model declared as IRSESystemType | |
|---|---|
protected IRSESystemType |
DummyHost._systemType
|
| Methods in org.eclipse.rse.core.model that return IRSESystemType | |
|---|---|
IRSESystemType |
DummyHost.getSystemType()
|
IRSESystemType |
Host.getSystemType()
|
IRSESystemType |
SystemSignonInformation.getSystemType()
Returns the systemType of the remote system. |
IRSESystemType |
IHost.getSystemType()
Get the system type. |
| Methods in org.eclipse.rse.core.model with parameters of type IRSESystemType | |
|---|---|
IHost |
ISystemHostPool.createHost(IRSESystemType systemType,
String aliasName,
String hostName)
Create a connection object, given only the minimal information. |
IHost |
ISystemHostPool.createHost(IRSESystemType systemType,
String aliasName,
String hostName,
String description)
Create a connection object, given all the possible attributes except default userId. |
IHost |
ISystemProfile.createHost(IRSESystemType systemType,
String connectionName,
String hostName,
String description)
Convenience method for create a new connection within this profile. |
IHost |
ISystemRegistry.createHost(IRSESystemType systemType,
String connectionName,
String hostAddress,
String description)
Create a connection object. |
IHost |
ISystemHostPool.createHost(IRSESystemType systemType,
String aliasName,
String hostName,
String description,
String defaultUserId,
int defaultUserIdLocation)
Create a connection object, given all the possible attributes. |
IHost |
ISystemRegistry.createHost(String profileName,
IRSESystemType systemType,
String connectionName,
String hostName,
String description)
Create a connection object. |
IHost |
ISystemRegistry.createHost(String profileName,
IRSESystemType systemType,
String connectionName,
String hostName,
String description,
String defaultUserId,
int defaultUserIdLocation,
ISystemNewConnectionWizardPage[] newConnectionWizardPages)
Create a host object, sometimes called a "connection", given the containing profile and given all the possible attributes. |
String[] |
ISystemRegistry.getHostNames(IRSESystemType systemType)
Return array of previously specified host names for a given system type. |
IHost[] |
ISystemRegistry.getHostsBySystemType(IRSESystemType systemType)
Returns all connections for all active profiles, for the given system type. |
IHost[] |
ISystemRegistry.getHostsBySystemTypes(IRSESystemType[] systemTypes)
Return all connections for all active profiles, for the given system types. |
ISubSystemConfiguration[] |
ISystemRegistry.getSubSystemConfigurationsBySystemType(IRSESystemType systemType,
boolean filterDuplicateServiceSubSystemFactories)
Return all subsystem factories which support the given system type. |
void |
DummyHost.setSystemType(IRSESystemType value)
|
void |
Host.setSystemType(IRSESystemType systemType)
Intercept of setSystemType so we can decide if the user ID is case sensitive |
void |
SystemSignonInformation.setSystemType(IRSESystemType systemType)
Sets the systemType. |
void |
IHost.setSystemType(IRSESystemType value)
Set the system type. |
void |
ISystemHostPool.updateHost(IHost conn,
IRSESystemType systemType,
String aliasName,
String hostName,
String description,
String defaultUserId,
int defaultUserIdLocation)
Update an existing connection given the new information. |
void |
ISystemRegistry.updateHost(IHost host,
IRSESystemType systemType,
String connectionName,
String hostName,
String description,
String defaultUserId,
int defaultUserIdLocation)
Update an existing host given the new information. |
| Constructors in org.eclipse.rse.core.model with parameters of type IRSESystemType | |
|---|---|
DummyHost(String hostName,
IRSESystemType systemType)
Constructor. |
|
SystemSignonInformation(String hostname,
String userid,
IRSESystemType systemType)
Constructor for SystemSignonInformation. |
|
SystemSignonInformation(String hostname,
String userid,
String password,
IRSESystemType systemType)
Constructor for SystemSignonInformation. |
|
| Uses of IRSESystemType in org.eclipse.rse.core.subsystems |
|---|
| Methods in org.eclipse.rse.core.subsystems that return IRSESystemType | |
|---|---|
IRSESystemType[] |
SubSystemConfiguration.getSystemTypes()
Return the system types this subsystem configuration supports. |
IRSESystemType[] |
ISubSystemConfigurationProxy.getSystemTypes()
Returns the list of system types the subsystem configuration is supporting. |
IRSESystemType[] |
ISubSystemConfiguration.getSystemTypes()
Return the system types this subsystem factory supports. |
| Methods in org.eclipse.rse.core.subsystems with parameters of type IRSESystemType | |
|---|---|
boolean |
ISubSystemConfigurationProxy.appliesToSystemType(IRSESystemType type)
Test if the given system type matches one or more of the systemTypes attribute of this extension. |
| Uses of IRSESystemType in org.eclipse.rse.files.ui.actions |
|---|
| Methods in org.eclipse.rse.files.ui.actions with parameters of type IRSESystemType | |
|---|---|
void |
SystemSelectRemoteFolderAction.setSystemType(IRSESystemType systemType)
Convenience method to restrict to a single system type. |
void |
SystemSelectRemoteFileAction.setSystemType(IRSESystemType systemType)
Convenience method to restrict to a single system type. |
void |
SystemSelectRemoteFolderAction.setSystemTypes(IRSESystemType[] systemTypes)
Set the system types to restrict what connections the user sees, and what types of connections they can create. |
void |
SystemSelectRemoteFileAction.setSystemTypes(IRSESystemType[] systemTypes)
Set the system types to restrict what connections the user sees, and what types of connections they can create. |
| Uses of IRSESystemType in org.eclipse.rse.files.ui.dialogs |
|---|
| Methods in org.eclipse.rse.files.ui.dialogs with parameters of type IRSESystemType | |
|---|---|
void |
SystemSelectRemoteFileOrFolderDialog.setSystemTypes(IRSESystemType[] systemTypes)
Deprecated. Set the system types to restrict what connections the user sees, and what types of connections they can create. |
| Uses of IRSESystemType in org.eclipse.rse.files.ui.widgets |
|---|
| Methods in org.eclipse.rse.files.ui.widgets with parameters of type IRSESystemType | |
|---|---|
void |
SystemQualifiedRemoteFolderCombo.setSystemType(IRSESystemType systemType)
Convenience method to restrict to a single system type. |
void |
SystemRemoteFolderCombo.setSystemType(IRSESystemType systemType)
Convenience method to restrict to a single system type. |
void |
SystemSelectRemoteFilesForm.setSystemType(IRSESystemType systemType)
Convenience method to restrict to a single system type. |
void |
SystemQualifiedRemoteFolderCombo.setSystemTypes(IRSESystemType[] systemTypes)
Set the system types to restrict what connections the user sees, and what types of connections they can create. |
void |
SystemRemoteFolderCombo.setSystemTypes(IRSESystemType[] systemTypes)
Set the system types to restrict what connections the user sees, and what types of connections they can create. |
void |
SystemSelectRemoteFileOrFolderForm.setSystemTypes(IRSESystemType[] systemTypes)
Set the system types to restrict what connections the user sees, and what types of connections they can create. |
void |
SystemSelectRemoteFilesForm.setSystemTypes(IRSESystemType[] systemTypes)
Set the system types to restrict what connections the user sees, and what types of connections they can create. |
| Uses of IRSESystemType in org.eclipse.rse.subsystems.files.core.model |
|---|
| Methods in org.eclipse.rse.subsystems.files.core.model with parameters of type IRSESystemType | |
|---|---|
static IRemoteFileSubSystemConfiguration |
RemoteFileUtility.getFileSubSystemConfiguration(IRSESystemType systemType)
|
| Uses of IRSESystemType in org.eclipse.rse.ui |
|---|
| Fields in org.eclipse.rse.ui declared as IRSESystemType | |
|---|---|
protected IRSESystemType |
SystemConnectionForm.defaultSystemType
|
static IRSESystemType |
SystemConnectionForm.lastSystemType
|
protected IRSESystemType[] |
SystemConnectionForm.validSystemTypes
|
| Methods in org.eclipse.rse.ui that return IRSESystemType | |
|---|---|
IRSESystemType |
SystemConnectionForm.getSystemType()
Return user-entered System Type. |
static IRSESystemType[] |
SystemWidgetHelpers.getValidSystemTypes(String[] restrictIds)
Return the list of all registered valid system types. |
| Methods in org.eclipse.rse.ui with parameters of type IRSESystemType | |
|---|---|
static SystemHostCombo |
SystemWidgetHelpers.createConnectionCombo(Composite parent,
SelectionListener listener,
IRSESystemType[] systemTypes,
ISubSystemConfiguration factory,
String factoryId,
String factoryCategory,
IHost defaultConnection,
int horizontalSpan,
boolean newButton)
Creates a new remote system connection combobox instance and sets the default layout data, with tooltip text. |
static Combo |
SystemWidgetHelpers.createHostNameCombo(Composite parent,
Listener listener,
IRSESystemType systemType)
Creates a hostname combination box. |
static Combo |
SystemWidgetHelpers.createSystemTypeCombo(Composite parent,
Listener listener,
IRSESystemType[] systemTypes)
Creates a readonly system type combination box with the given system types. |
static List |
SystemWidgetHelpers.createSystemTypeListBox(Composite group,
Listener listener,
IRSESystemType[] systemTypes)
Creates a readonly system type listbox with the given system types. |
static String[] |
SystemWidgetHelpers.getSystemTypeLabels(IRSESystemType[] systemTypes)
Return the labels for the given list of system types. |
void |
SystemConnectionForm.restrictSystemType(IRSESystemType systemType)
Call this to restrict the system type that the user is allowed to choose. |
void |
SystemConnectionForm.restrictSystemTypes(IRSESystemType[] systemTypes)
Call this to restrict the system types that the user is allowed to choose. |
static void |
SystemWidgetHelpers.sortSystemTypesByLabel(IRSESystemType[] systemTypes)
Sorts the given array of systemTypes in ascending order by system type label. |
void |
ISystemConnectionFormCaller.systemTypeSelected(IRSESystemType systemType,
boolean duringInitialization)
Event: the user has selected a system type. |
| Uses of IRSESystemType in org.eclipse.rse.ui.actions |
|---|
| Methods in org.eclipse.rse.ui.actions with parameters of type IRSESystemType | |
|---|---|
void |
SystemNewConnectionAction.restrictSystemTypes(IRSESystemType[] systemTypes)
Call this to restrict the system types that the user is allowed to choose |
| Uses of IRSESystemType in org.eclipse.rse.ui.dialogs |
|---|
| Methods in org.eclipse.rse.ui.dialogs with parameters of type IRSESystemType | |
|---|---|
void |
SystemPasswordPersistencePrompt.setInputData(IRSESystemType systemtype,
String hostname,
String userid)
Set the input data to prepopulate the change dialog |
void |
SystemSelectConnectionDialog.setSystemType(IRSESystemType systemType)
Restrict to a certain system type. |
void |
SystemRemoteResourceDialog.setSystemTypes(IRSESystemType[] types)
|
void |
SystemSelectConnectionDialog.setSystemTypes(IRSESystemType[] systemTypes)
Restrict to certain system types. |
| Constructors in org.eclipse.rse.ui.dialogs with parameters of type IRSESystemType | |
|---|---|
EnvironmentVariablesPromptDialog(Shell shell,
String title,
IRSESystemType systemType,
String invalidNameChars,
String[] existingNames,
boolean change)
Constructor for EnvironmentVariablesPromptDialog. |
|
| Uses of IRSESystemType in org.eclipse.rse.ui.model |
|---|
| Methods in org.eclipse.rse.ui.model that return IRSESystemType | |
|---|---|
IRSESystemType[] |
ISystemPromptableObject.getSystemTypes()
Returns the list of system types this promptable object is associated with. |
| Uses of IRSESystemType in org.eclipse.rse.ui.propertypages |
|---|
| Fields in org.eclipse.rse.ui.propertypages declared as IRSESystemType | |
|---|---|
protected IRSESystemType |
ServicesPropertyPage._hosttype
|
| Methods in org.eclipse.rse.ui.propertypages that return IRSESystemType | |
|---|---|
IRSESystemType |
ServicesPropertyPage.getSystemType()
|
| Methods in org.eclipse.rse.ui.propertypages with parameters of type IRSESystemType | |
|---|---|
void |
ISystemConnectionWizardPropertyPage.setSystemType(IRSESystemType systemType)
|
void |
ServicesPropertyPage.setSystemType(IRSESystemType systemType)
|
| Uses of IRSESystemType in org.eclipse.rse.ui.widgets |
|---|
| Fields in org.eclipse.rse.ui.widgets declared as IRSESystemType | |
|---|---|
protected IRSESystemType[] |
SystemSelectConnectionForm.systemTypes
|
| Methods in org.eclipse.rse.ui.widgets with parameters of type IRSESystemType | |
|---|---|
protected void |
SystemHostCombo.populateConnectionCombo(Combo combo,
IRSESystemType[] systemTypes,
IHost defaultConnection)
Populates a read-only connection combobox instance with system connections for the given array of system types. |
protected boolean |
SystemHostCombo.populateConnectionCombo(Combo combo,
IRSESystemType systemType,
IHost defaultConnection,
boolean preSelectIfNoMatch)
Populates a read-only connection combobox instance with system connections for the given system type. |
protected boolean |
SystemHostCombo.populateConnectionCombo(Combo combo,
IRSESystemType systemType,
IHost defaultConnection,
boolean preSelectIfNoMatch,
boolean appendToCombo)
Populates a read-only connection combobox instance with system connections for the given system type. |
void |
SystemSelectConnectionForm.setSystemType(IRSESystemType systemType)
Restrict to one system type. |
void |
SystemSelectConnectionForm.setSystemTypes(IRSESystemType[] systemTypes)
Restrict to certain system types. |
| Constructors in org.eclipse.rse.ui.widgets with parameters of type IRSESystemType | |
|---|---|
SystemHostCombo(Composite parent,
int style,
IRSESystemType[] systemTypes,
IHost defaultConnection,
boolean showNewButton)
Constructor for SystemConnectionCombo when there is an array of system types to restrict the connection list to. |
|
SystemHostCombo(Composite parent,
int style,
IRSESystemType systemType,
IHost defaultConnection,
boolean showNewButton)
Constructor for SystemConnectionCombo when there is only a single system type to restrict the connection list to. |
|
| Uses of IRSESystemType in org.eclipse.rse.ui.wizards |
|---|
| Methods in org.eclipse.rse.ui.wizards with parameters of type IRSESystemType | |
|---|---|
protected IServiceSubSystemConfiguration[] |
SubSystemServiceWizardPage.getServiceSubSystemConfigurations(IRSESystemType systemType,
Class serviceType)
|
|
RSE Release 2.0 |
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||