private static boolean getDelegationModelProperty()

in modules/vfs-class-loader/src/main/java/org/apache/accumulo/classloader/vfs/AccumuloVFSClassLoader.java [158:166]


  private static boolean getDelegationModelProperty() {
    String property = System.getProperty(VFS_CLASSLOADER_DELEGATION);
    boolean postDelegation = false;
    if (null != property && property.equalsIgnoreCase("post")) {
      postDelegation = true;
    }
    printDebug("ClassLoader configured for pre-delegation: " + postDelegation);
    return postDelegation;
  }