Uses of Interface
com.perforce.p4java.server.IServer

Packages that use IServer
com.perforce.p4java.client Provides interfaces for accessing and manipulating Perforce client workspaces and associated objects. 
com.perforce.p4java.core Provides interfaces and classes for defining and accessing Perforce objects such as jobs, changelists, etc., and, through the file sub-package, Perforce files. 
com.perforce.p4java.impl.generic.core Provides standard implementation classes for the com.perforce.p4java.core interfaces. 
com.perforce.p4java.impl.generic.core.file Provides standard implementation classes for the com.perforce.p4java.core.file interfaces. 
com.perforce.p4java.impl.mapbased.client   
com.perforce.p4java.server Provides interfaces and classes for accessing Perforce SCM servers and associated server-level services. 
 

Uses of IServer in com.perforce.p4java.client
 

Methods in com.perforce.p4java.client that return IServer
 IServer IClient.getServer()
          Return the IServer object representing the Perforce server associated with this Perforce client.
 

Methods in com.perforce.p4java.client with parameters of type IServer
 void IClient.setServer(IServer server)
          Set the Perforce server associated with this client.
 

Uses of IServer in com.perforce.p4java.core
 

Methods in com.perforce.p4java.core that return IServer
 IServer ILabel.getServer()
          Get the Perforce server object associated with this label.
 

Methods in com.perforce.p4java.core with parameters of type IServer
 void IServerResource.setServer(IServer server)
          Set the server associated with this resource.
 void ILabel.setServer(IServer server)
          Set the Perforce server object associated with this label.
 

Uses of IServer in com.perforce.p4java.impl.generic.core
 

Fields in com.perforce.p4java.impl.generic.core declared as IServer
protected  IServer ServerResource.server
          Server instance
 

Methods in com.perforce.p4java.impl.generic.core that return IServer
 IServer Label.getServer()
           
 IServer Changelist.getServer()
           
 

Methods in com.perforce.p4java.impl.generic.core with parameters of type IServer
 void ServerResource.setServer(IServer server)
           
 void Label.setServer(IServer server)
           
 

Constructors in com.perforce.p4java.impl.generic.core with parameters of type IServer
BranchSpec(java.util.Map<java.lang.String,java.lang.Object> map, IServer server)
          Construct a BranchSpec from a map passed back from the Perforce server in response to a getBranchSpec command.
Changelist(IChangelistSummary summary, IServer server, boolean refresh)
          Construct a new Changelist using the passed-in changelist as a template.
ChangelistSummary(boolean complete, boolean completable, boolean refreshable, boolean updateable, IServer server)
          Explicit-value pass-through constructor for the ServerResource fields.
ChangelistSummary(java.util.Map<java.lang.String,java.lang.Object> map, boolean summaryOnly, IServer server)
          Construct a ChangelistSummary from a suitable map returned from the Perforce server.
Job(IServer server, java.util.Map<java.lang.String,java.lang.Object> map)
           
Job(IServer server, java.util.Map<java.lang.String,java.lang.Object> map, boolean longDescriptions)
           
JobSpec(java.util.Map<java.lang.String,java.lang.Object> map, IServer server)
           
Label(java.util.Map<java.lang.String,java.lang.Object> map, IServer server)
          Construct a new Label from the map passed back from the IServer's getLabel method or from a similar map, and the current server object (if any).
ServerResource(boolean refreshable, boolean updateable, IServer server)
          Explicit all-value constructor.
ServerResource(IServer server)
          Sets complete to true, completable, refreshable, and updateable to false, and server to the passed-in value.
User(java.util.Map<java.lang.String,java.lang.Object> map, IServer server)
          Constructs a User from the passed-in map.
 

Uses of IServer in com.perforce.p4java.impl.generic.core.file
 

Fields in com.perforce.p4java.impl.generic.core.file declared as IServer
protected  IServer FileSpec.server
           
 

Methods in com.perforce.p4java.impl.generic.core.file with parameters of type IServer
 void FileSpec.setServer(IServer server)
           
 

Constructors in com.perforce.p4java.impl.generic.core.file with parameters of type IServer
ExtendedFileSpec(java.util.Map<java.lang.String,java.lang.Object> map, IServer server, int index)
          Construct an ExtendedFileSpec object from the passed-in map.
FileSpec(java.util.Map<java.lang.String,java.lang.Object> map, IServer server, int index)
          Try to construct a FileSpec from a passed-in map as returned from a Perforce server.
 

Uses of IServer in com.perforce.p4java.impl.mapbased.client
 

Methods in com.perforce.p4java.impl.mapbased.client that return IServer
 IServer Client.getServer()
           
 

Methods in com.perforce.p4java.impl.mapbased.client with parameters of type IServer
 void Client.setServer(IServer server)
          Note that this will fail with a class cast exception if the passed-in server is not a mapbased ServerImpl object.
 

Constructors in com.perforce.p4java.impl.mapbased.client with parameters of type IServer
Client(IClientSummary clientSummary, IServer serverImpl, boolean refresh)
          Construct a new Client object using the passed-in client summary object as a partial template along with the passed-in IServer object.
Client(IServer server)
          Note that any IServer object returned by the ServerFactory will work for the serverImpl parameter; if not, a suitable cast exception will be thrown.
Client(IServer serverImpl, java.util.Map<java.lang.String,java.lang.Object> map)
          Construct a suitable Client object from an IServer and a map returned from the Perforce server.
Client(java.lang.String name, java.util.Date accessed, java.util.Date updated, java.lang.String description, java.lang.String hostName, java.lang.String ownerName, java.lang.String root, IClientSummary.ClientLineEnd lineEnd, IClientSummary.IClientOptions options, IClientSummary.IClientSubmitOptions submitOptions, java.util.List<java.lang.String> alternateRoots, IServer serverImpl, ClientView clientView)
          Construct a new Client object from explicit fields.
 

Uses of IServer in com.perforce.p4java.server
 

Methods in com.perforce.p4java.server that return IServer
static IServer ServerFactory.getServer(java.lang.String serverUriString, java.util.Properties props)
          Return an IServer interface onto an underlying Perforce server at the host address specified by serverUriString using the protocol implementation and passed-in properties.
static IServer ServerFactory.getServer(java.net.URI serverUrl, java.util.Properties props)
          Deprecated. as of the 2009.2 release, use the getServer(String, Properties) method due to that Java's URI class does not accept hostnames with anything other than alphanumeric characters: even common hostnames like "perforce_p" will fail, often silently.
 



Copyright (c) 2008-2010 Perforce Software. All rights reserved.