Пример #1
0
 public void setProperty(String name, String value) throws Exception {
   context.getProperties().put(name, value);
 }
Пример #2
0
 public Map<String, String> getProperties() {
   if (context.getProperties().isEmpty()) {
     return null;
   }
   return context.getProperties();
 }