@Override
 public List<String> getRRAList(final String collectionName) {
   final SnmpCollection collection = getSnmpCollection(getContainer(), collectionName);
   return collection == null ? null : collection.getRrd().getRraCollection();
 }
 @Override
 public int getStep(final String collectionName) {
   final SnmpCollection collection = getSnmpCollection(getContainer(), collectionName);
   return collection == null ? -1 : collection.getRrd().getStep();
 }