Removed PerformanceLogger per previous discussions
Renamed RemoteSystemLogListener to LogListener and made internal
Removed IRemoteSystemsLogging constants interface - moved constants to Logger,
they were only referenced from the Logger anyway
Removed LabelUtil from its internal package - used hardcoded & for mnemonics
instead
Removed usage of LabelUtil from LoggingPreferencePage
Removed all the resource bundle code from RemoteSystemsLoggingPlugin - it was
obsolete
move CURRENT_RELEASE and CURRENT_RELEASE_NAME from SystemResources to RSECorePlugin. These aren't resources and should be in core. Needed prior to moving filters.
Reference the core persistence manager accessor in the filter code instead of the ui persistence manager accessor. Its the same persistence manager.
- renamed AbstractConnectorService to StandardConnectorService
- renamed SuperAbstractConnectorService to AbstractConnectorService
This completes the refactoring. Javadoc must now be written.
- changed BasicConnectorService to extend SuperAbstractConnectorService instead of AuthenticatingConnectorService since its role is to NOT provide authentication.
- removed BasicCredentialsProvider since it is no longer needed
No impact over M5.
- introduced AuthenticatingConnectorService as a superclass of AbstractConnectorService
- moved almost all methods from AbstractConnectorService to AuthenticatingConnectorService. AbstractConnectorService now handled the creation of the StandardCredentialsProvider for all subclasses.
- moved AbstractConnectorService back to UI with the intention of renaming it StandardConnectorService
- moved requiresPassword, supportsPassword, requiresUserId, and supportsUserId back to IConnectorService from ICredentialsProvider.
- removed SshCredentialsProvider and DStoreCredentialsProvider, their connector services can now use the StandardCredentialsProvider
- moved AbstractConnectorService, AbstractDelegatingConnectorService, AbstractResource, AbstractConnectorServiceManager, and DummyHost from UI plugin to the core plugin.
- moved DummyHost from org.eclipse.rse.model to org.eclipse.rse.internal.model