Esempio n. 1
0
 public String getResponseValue(String key) {
   return parameters.getProperty(Constants.RESPONSE_PREFIX + key, "");
 }
Esempio n. 2
0
 /**
  * @param key
  * @return
  * @author Nam
  */
 public String getRequestValue(String key) {
   return parameters.getProperty(Constants.REQUEST_PREFIX + key, "");
 }
Esempio n. 3
0
 public String getResponseValue(String key, String defaultvalue) {
   return parameters.getProperty(Constants.RESPONSE_PREFIX + key, defaultvalue);
 }
Esempio n. 4
0
 /**
  * @param key
  * @param defaultvalue
  * @return
  * @author Nam
  */
 public String getRequestValue(String key, String defaultvalue) {
   return parameters.getProperty(Constants.REQUEST_PREFIX + key, defaultvalue);
 }