Uses of Interface
org.eclipse.emf.emfstore.internal.client.model.ServerInfo

Packages that use ServerInfo
org.eclipse.emf.emfstore.internal.client.configuration   
org.eclipse.emf.emfstore.internal.client.model   
org.eclipse.emf.emfstore.internal.client.model.connectionmanager   
org.eclipse.emf.emfstore.internal.client.model.connectionmanager.xmlrpc   
org.eclipse.emf.emfstore.internal.client.model.impl   
org.eclipse.emf.emfstore.internal.client.model.impl.api   
org.eclipse.emf.emfstore.internal.client.model.util   
org.eclipse.emf.emfstore.internal.client.ui.controller   
org.eclipse.emf.emfstore.internal.client.ui.dialogs.login   
 

Uses of ServerInfo in org.eclipse.emf.emfstore.internal.client.configuration
 

Methods in org.eclipse.emf.emfstore.internal.client.configuration that return types with arguments of type ServerInfo
 List<ServerInfo> Behavior.getDefaultServerInfos()
          Get the default server info.
 

Uses of ServerInfo in org.eclipse.emf.emfstore.internal.client.model
 

Methods in org.eclipse.emf.emfstore.internal.client.model that return ServerInfo
 ServerInfo ModelFactory.createServerInfo()
          Returns a new object of class 'Server Info'.
 ServerInfo Usersession.getServerInfo()
          Returns the value of the 'Server Info' reference.
 

Methods in org.eclipse.emf.emfstore.internal.client.model that return types with arguments of type ServerInfo
 org.eclipse.emf.common.util.EList<ServerInfo> Workspace.getServerInfos()
          Returns the value of the 'Server Infos' containment reference list.
 Set<ServerInfo> Workspace.resolve(ServerUrl serverUrl)
          Resolves a server URL to a server.
 

Methods in org.eclipse.emf.emfstore.internal.client.model with parameters of type ServerInfo
 void Workspace.addServerInfo(ServerInfo serverInfo)
          Adds an server info and saves.
 AdminBroker Workspace.getAdminBroker(ServerInfo serverInfo)
          Returns an AdminBroker related to the given ServerInfo.
 void Workspace.removeServerInfo(ServerInfo serverInfo)
          Removes an server info and saves.
 void Usersession.setServerInfo(ServerInfo value)
          Sets the value of the 'Server Info' reference.
 void Workspace.updateACUser(ServerInfo serverInfo)
          Updates the ACUser and it roles.
 

Uses of ServerInfo in org.eclipse.emf.emfstore.internal.client.model.connectionmanager
 

Methods in org.eclipse.emf.emfstore.internal.client.model.connectionmanager that return ServerInfo
 ServerInfo ServerCall.getServer()
          Returns the server info that is used by this server call, if set.
 

Methods in org.eclipse.emf.emfstore.internal.client.model.connectionmanager with parameters of type ServerInfo
 String KeyStoreManager.encrypt(String password, ServerInfo server)
          Encrypts a password.
 String ConnectionManager.getVersion(ServerInfo serverInfo)
          Returns the version of the EMFStore server.
 void AdminConnectionManager.initConnection(ServerInfo serverInfo, SessionId id)
          Initialize the connection to the server.
 AuthenticationInformation ConnectionManager.logIn(String username, String password, ServerInfo severInfo, ClientVersionInfo clientVersionInfo)
          Log into the server given by server info.
 ServerCall<U> ServerCall.setServer(ServerInfo server)
          Sets the server info that is used by this server call.
 

Constructors in org.eclipse.emf.emfstore.internal.client.model.connectionmanager with parameters of type ServerInfo
ServerCall(ServerInfo server)
          Default constructor with serverinfo.
ServerCall(ServerInfo server, org.eclipse.core.runtime.IProgressMonitor monitor)
          Default constructor with server info and progress monitor.
 

Uses of ServerInfo in org.eclipse.emf.emfstore.internal.client.model.connectionmanager.xmlrpc
 

Methods in org.eclipse.emf.emfstore.internal.client.model.connectionmanager.xmlrpc with parameters of type ServerInfo
 String XmlRpcConnectionManager.getVersion(ServerInfo serverInfo)
          Returns the version of the EMFStore server.
 void XmlRpcClientManager.initConnection(ServerInfo serverInfo)
          Initializes the connection.
 void XmlRpcAdminConnectionManager.initConnection(ServerInfo serverInfo, SessionId id)
          Initialize the connection to the server.
 AuthenticationInformation XmlRpcConnectionManager.logIn(String username, String password, ServerInfo serverInfo, ClientVersionInfo clientVersionInfo)
          Log into the server given by server info.
 

Uses of ServerInfo in org.eclipse.emf.emfstore.internal.client.model.impl
 

Classes in org.eclipse.emf.emfstore.internal.client.model.impl that implement ServerInfo
 class ServerInfoImpl
          An implementation of the model object ' Server Info'.
 

Methods in org.eclipse.emf.emfstore.internal.client.model.impl that return ServerInfo
 ServerInfo UsersessionImpl.basicGetServerInfo()
           
 ServerInfo ModelFactoryImpl.createServerInfo()
           
 ServerInfo UsersessionImpl.getServerInfo()
           
 

Methods in org.eclipse.emf.emfstore.internal.client.model.impl that return types with arguments of type ServerInfo
 org.eclipse.emf.common.util.EList<ServerInfo> WorkspaceImpl.getServerInfos()
           
 Set<ServerInfo> WorkspaceBase.resolve(ServerUrl serverUrl)
          Resolves a server URL to a server.
 

Methods in org.eclipse.emf.emfstore.internal.client.model.impl with parameters of type ServerInfo
 void WorkspaceBase.addServerInfo(ServerInfo serverInfo)
          Adds an server info and saves.
 AdminBroker WorkspaceBase.getAdminBroker(ServerInfo serverInfo)
          Returns an AdminBroker related to the given ServerInfo.
 void WorkspaceBase.removeServerInfo(ServerInfo serverInfo)
          Removes an server info and saves.
 void UsersessionImpl.setServerInfo(ServerInfo newServerInfo)
           
 void WorkspaceBase.updateACUser(ServerInfo serverInfo)
          Updates the ACUser and it roles.
 

Constructors in org.eclipse.emf.emfstore.internal.client.model.impl with parameters of type ServerInfo
AdminBrokerImpl(ServerInfo serverInfo, SessionId sessionId)
          Constructor.
 

Uses of ServerInfo in org.eclipse.emf.emfstore.internal.client.model.impl.api
 

Methods in org.eclipse.emf.emfstore.internal.client.model.impl.api that return ServerInfo
 ServerInfo ESRemoteProjectImpl.getServerInfo()
          Returns the server info of this remote project.
 

Constructors in org.eclipse.emf.emfstore.internal.client.model.impl.api with parameters of type ServerInfo
ESRemoteProjectImpl(ServerInfo serverInfo, ProjectInfo projectInfo)
          Constructor.
ESServerImpl(ServerInfo serverInfo)
          Constructor.
 

Uses of ServerInfo in org.eclipse.emf.emfstore.internal.client.model.util
 

Methods in org.eclipse.emf.emfstore.internal.client.model.util that return ServerInfo
static ServerInfo EMFStoreClientUtil.createServerInfo(String url, int port, String certificateAlias)
          Create a server info for a given port and URL.
static ServerInfo EMFStoreClientUtil.giveServerInfo(String url, int port)
          Gives a server info for a given port and URL.
 

Methods in org.eclipse.emf.emfstore.internal.client.model.util with parameters of type ServerInfo
 T ModelSwitch.caseServerInfo(ServerInfo object)
          Returns the result of interpreting the object as an instance of 'Server Info'.
 

Uses of ServerInfo in org.eclipse.emf.emfstore.internal.client.ui.controller
 

Methods in org.eclipse.emf.emfstore.internal.client.ui.controller with parameters of type ServerInfo
 void UIRegisterEPackageController.registerEPackage(ServerInfo serverInfo)
          Register a new EPackage which can be selected with a SelectionDialog.
 

Constructors in org.eclipse.emf.emfstore.internal.client.ui.controller with parameters of type ServerInfo
UIDeleteRemoteProjectController(org.eclipse.swt.widgets.Shell shell, ServerInfo serverInfo, ProjectInfo projectInfo)
           Constructor.
 

Uses of ServerInfo in org.eclipse.emf.emfstore.internal.client.ui.dialogs.login
 

Constructor parameters in org.eclipse.emf.emfstore.internal.client.ui.dialogs.login with type arguments of type ServerInfo
ServerInfoSelectionDialog(org.eclipse.swt.widgets.Shell parentShell, List<ServerInfo> servers)
          Create the dialog.
 



Copyright © 2015. All Rights Reserved.