/**
  * Copy this objects fields into the parameter
  *
  * @param val
  */
 public void copyTo(final BwShareableContainedDbentity<?> val) {
   super.copyTo(val);
   val.setColPath(getColPath());
 }
 /**
  * Add our stuff to the ToString object
  *
  * @param ts ToString for result
  */
 @Override
 protected void toStringSegment(final ToString ts) {
   super.toStringSegment(ts);
   ts.append("collection", getColPath());
 }