Uses of Class
org.peace_tools.workspace.Server

Packages that use Server
org.peace_tools.core Contains the core classes that coordinate the activities of various classes and wizards. 
org.peace_tools.core.job Contains the classes associated with the job wizard. 
org.peace_tools.core.server Contains the classes associated with the server wizard. 
org.peace_tools.core.session Contains the classes associated with providing a session on a local or remote server. 
org.peace_tools.data Contains the classes that provide data for the various views in the GUI. 
org.peace_tools.views Contains the classes that provide views for the various data objects in the GUI. 
org.peace_tools.workspace Contains the classes that provide persistent storage of work space configuration. 
 

Uses of Server in org.peace_tools.core
 

Fields in org.peace_tools.core declared as Server
private  Server ServerMenuHelper.server
          The currently selected server entry (if any).
private  Server JobMonitor.server
          Information regarding the server on which the job (that this monitor is monitoring) is running.
private  Server ServerConnectionTester.server
          The server to which this class is attempting to establish is a connection to verify that the GUI can actually connect to the server.
private  Server PEACEInstaller.server
          This is the server entry that is being currently installed via this wizard.
 

Methods in org.peace_tools.core with parameters of type Server
 void ViewFactory.createView(Job job, Server server)
          Method to create a graph type of view for a given entry.
 void ViewFactory.createView(Server server, java.lang.String userID)
          Method to create a server job list view.
private  void DeleteDialog.deleteRemoteDir(Server server, java.lang.String directory)
          Helper method to recursively delete file on server.
 

Constructors in org.peace_tools.core with parameters of type Server
JobMonitor(Job job, Server server, java.awt.event.ActionListener listener)
          The constructor merely initializes the instance variables to default values.
PEACEInstaller(Server server)
          The constructor lays out the main components in this tab.
ServerConnectionTester(MainFrame mainFrame, Server server)
          The constructor.
 

Uses of Server in org.peace_tools.core.job
 

Methods in org.peace_tools.core.job that return Server
protected  Server MSTWizardPage.getSelectedServer()
          Helper method to obtain selected server ID.
 

Uses of Server in org.peace_tools.core.server
 

Fields in org.peace_tools.core.server declared as Server
private  Server ServerInfoWizardPage.server
          Information about the actual server entry being edited.
private  Server ServerWizard.server
          This is the server entry that is being currently edited via this wizard.
private  Server ServerAddingEntryWizardPage.server
          Information about the actual server entry being edited.
private  Server ServerTypeWizardPage.server
          Information about the actual server entry being edited.
 

Methods in org.peace_tools.core.server that return Server
 Server ServerWizard.getServer()
          Obtain the current server entry that is being edited via this server wizard.
 

Constructors in org.peace_tools.core.server with parameters of type Server
ServerAddingEntryWizardPage(WizardDialog wizard, Server server)
          The constructor.
ServerInfoWizardPage(WizardDialog wizard, Server server, boolean lockPath)
          The constructor.
ServerTypeWizardPage(WizardDialog wizard, Server server, boolean changeCredentialsOnly)
          The constructor.
 

Uses of Server in org.peace_tools.core.session
 

Fields in org.peace_tools.core.session declared as Server
protected  Server ServerSession.server
          The server data entry that provides the necessary information to connect to the server.
 

Methods in org.peace_tools.core.session with parameters of type Server
static ServerSession SessionFactory.createSession(java.awt.Component parent, Server server)
          Factory method to create suitable server session.
 

Constructors in org.peace_tools.core.session with parameters of type Server
LocalServerSession(java.awt.Component parent, Server server)
          The constructor merely passes parameters to the base class that initializes the instance variables.
RemoteServerSession(java.awt.Component parent, Server server)
          The constructor merely passes parameters to the base class that initializes the instance variables.
ServerSession(Server server, java.awt.Component parent)
          The constructor merely initializes the instance variables to the values supplied as parameters.
 

Uses of Server in org.peace_tools.data
 

Methods in org.peace_tools.data that return Server
 Server ServerListTableModel.getServer(int row)
          This is a convenience method to obtain the server entry.
 

Uses of Server in org.peace_tools.views
 

Fields in org.peace_tools.views declared as Server
protected  Server DetailView.server
          The server from where the details are bing displayed.
 

Constructors in org.peace_tools.views with parameters of type Server
DetailView(java.lang.String idTitle, java.lang.String idValue, Server server)
          The constructor.
JobDetailsView(Job job, Server server)
          The constructor.
ServerJobsView(Server server, java.lang.String userID)
          The constructor.
 

Uses of Server in org.peace_tools.workspace
 

Fields in org.peace_tools.workspace with type parameters of type Server
private  java.util.ArrayList<Server> ServerList.servers
          The list of Server objects that have been configured and added to this list.
 

Methods in org.peace_tools.workspace that return Server
static Server Server.create(org.w3c.dom.Element serverNode)
          Helper method to utilize data from a DOM tree to create a suitable Server entry.
 Server ServerList.getServer(java.lang.String serverID)
          Obtain reference to a Server object, given its work space wide unique server ID.
 

Methods in org.peace_tools.workspace that return types with arguments of type Server
 java.util.ArrayList<Server> ServerList.getServers()
          Obtain the list of Server objects that are currently available in a work space.
 

Methods in org.peace_tools.workspace with parameters of type Server
 void ServerList.add(Server server)
          Method to add a new server entry to this server list.
 void ServerList.remove(Server server)
          Method to remove a server entry to this server list.
 

Constructors in org.peace_tools.workspace with parameters of type Server
WorkspaceEvent(Server server, WorkspaceEvent.Operation operation)
          Constructor to create an event that can be used to report change in the status of a server entry.