package com.perforce.p4splunk.client;
public class Identifier {
private String product;
private String version;
public Identifier() {
version = "1.0";
product = "p4splunk";
String platform = System.getProperty("os.name");
version += "/" + platform;
}
public String getVersion() {
return version;
}
public String getProduct() {
return product;
}
}
# |
Change |
User |
Description |
Committed |
|
#2
|
10083 |
Paul Allen |
Added support for journal position and rotation. |
|
|
#1
|
10077 |
Paul Allen |
Add export command -- not yet working. |
|
|
//guest/paul_allen/dev/p4-splunk-java/src/com/perforce/p4splunk/Identifier.java |
#1
|
10058 |
Paul Allen |
Java version of Perforce Modular Input |
|
|