Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

RSE
Release 3.0

Uses of Interface
org.eclipse.rse.core.IRSESystemType

Packages that use IRSESystemType
org.eclipse.rse.core   
org.eclipse.rse.core.model   
org.eclipse.rse.core.subsystems   
org.eclipse.rse.files.ui.actions   
org.eclipse.rse.files.ui.widgets   
org.eclipse.rse.subsystems.files.core.model   
org.eclipse.rse.ui   
org.eclipse.rse.ui.actions   
org.eclipse.rse.ui.dialogs   
org.eclipse.rse.ui.model   
org.eclipse.rse.ui.propertypages   
org.eclipse.rse.ui.view   
org.eclipse.rse.ui.widgets   
org.eclipse.rse.ui.wizards   
 

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 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. getDenyPasswordSave ( IRSESystemType systemType, String hostAddress)
          Retrieves the preference for a particular system type and host address that determines if passwords can be saved.
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.
 int PasswordPersistenceManager. remove ( IRSESystemType systemType, String hostName)
          Removes all passwords for a host name for a given system type.
 void PasswordPersistenceManager. remove ( IRSESystemType systemType, String hostName, String userid)
          Removes all entries from the keyring that match the hostname, userid, and system type.
static void RSEPreferencesManager. setDefaultUserId ( IRSESystemType systemType, String userId)
          Sets the default userId for the given system type.
static int RSEPreferencesManager. setDenyPasswordSave ( IRSESystemType systemType, String hostAddress, boolean deny)
          Sets the preference for a particular system type and host address that causes passwords not to be savable.
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 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 hostName, String hostAddress, String description, boolean createSubSystems)
          Create a host object.
  IHost ISystemRegistry. createHost ( String profileName, IRSESystemType systemType, String connectionName, String hostName, String description, String defaultUserId, int defaultUserIdLocation, ISubSystemConfigurator[] configurators)
          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.
  ISubSystemConfigurationProxy[] ISystemRegistry. getSubSystemConfigurationProxiesBySystemType ( IRSESystemType systemType)
          Return all subsystem configuration proxies that are registered against the given system type.
  ISubSystemConfiguration[] ISystemRegistry. getSubSystemConfigurationsBySystemType ( IRSESystemType systemType, boolean filterDuplicates)
          Deprecated. Use ISystemRegistry.getSubSystemConfigurationsBySystemType(IRSESystemType,boolean,boolean) instead in order to avoid instantiating subsystem configurations if possible.
  ISubSystemConfiguration[] ISystemRegistry. getSubSystemConfigurationsBySystemType ( IRSESystemType systemType, boolean filterDuplicates, boolean activate)
          Return all subsystem configurations 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.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)
          Return the first remote file subsystem configuration associated with a system type.
 

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  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 SystemRemoteResourceDialog. setSystemTypes ( IRSESystemType[] 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 ServicesPropertyPage. setSystemType ( IRSESystemType systemType)
           
 

Uses of IRSESystemType in org.eclipse.rse.ui.view
 

Methods in org.eclipse.rse.ui.view that return IRSESystemType
  IRSESystemType[] ISystemResourceSelectionInputProvider. getSystemTypes ()
          Gets the system types allowed for the associated control
 

Methods in org.eclipse.rse.ui.view with parameters of type IRSESystemType
 void ISystemSelectRemoteObjectAPIProvider. setSystemTypes ( IRSESystemType[] systemTypes)
          Specify system types to restrict what types of connections the user can create, and see.
 void ISystemResourceSelectionInputProvider. setSystemTypes ( IRSESystemType[] types)
          Sets the system types allowed for this input provider
 

Uses of IRSESystemType in org.eclipse.rse.ui.widgets
 

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.
 

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   ISubSystemConfiguration[] SubSystemServiceWizardPage. getServiceSubSystemConfigurations ( IRSESystemType systemType, Class serviceType)
           
 


RSE
Release 3.0

Copyright (c) IBM Corporation and others 2000, 2008. All Rights Reserved.

 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire