public int getDestinationIndex(String name) {
   if (delegate == null) {
     if (DEFAULT_DESTINATION.equals(name)) {
       return DEFAULT_DESTINATION_INDEX;
     } else {
       return -1;
     }
   }
   return delegate.getDestinationIndex(name);
 }