public void setLong(String s, long l) throws PropertyException {
   ps.setLong(s, l);
 }
Esempio n. 2
0
 public void setLong(String key, long value) throws AtlassianCoreException {
   if (propertySet == null) {
     throw new AtlassianCoreException(ANONYMOUS_USER);
   }
   propertySet.setLong(key, value);
 }