package com.perforce.common.client;
import com.perforce.p4java.client.IClient;
import com.perforce.p4java.server.IOptionsServer;
public class Connection {
private String user;
private IOptionsServer iserver;
private IClient iclient;
public Connection(String user, IOptionsServer iserver, IClient iclient) {
this.user = user;
this.iserver = iserver;
this.iclient = iclient;
}
public String getUser() {
return user;
}
public IOptionsServer getIserver() {
return iserver;
}
public IClient getIclient() {
return iclient;
}
}
# |
Change |
User |
Description |
Committed |
|
#1
|
13876 |
Paul Allen |
Rename/move file(s) |
|
|
//guest/paul_allen/p4convert-maven/src/com/perforce/common/client/Connection.java |
#1
|
13873 |
Paul Allen |
Branching using p4convert-maven |
|
|
//guest/perforce_software/p4convert/src/com/perforce/common/client/Connection.java |
#1
|
9807 |
Paul Allen |
Initial import of p4-convert (from change 894340) |
|
|