Home | History | Annotate | Download | only in releng

Lines Matching defs:buildProperties

20 public class BuildProperties {
53 private Properties buildProperties;
55 public BuildProperties (){
60 public BuildProperties(String monitorProperties) {
61 buildProperties = new Properties();
65 buildProperties.load(
69 buildSubjectPrefix = buildProperties.get("buildSubjectPrefix").toString();
79 httpUrl = buildProperties.get("httpUrl").toString();
86 ftpUrl = buildProperties.get("ftpUrl").toString();
93 buildid = buildProperties.get("buildId").toString();
100 buildLabel = buildProperties.get("buildLabel").toString();
106 timestamp = buildProperties.get("timestamp").toString();
113 toRecipientList = buildProperties.get("recipients").toString();
121 textRecipientList = buildProperties.get("textRecipients").toString();
129 sender = buildProperties.get("sender").toString();
136 host = buildProperties.get("host").toString();
143 logFile = buildProperties.get("log").toString();
160 new BuildProperties();