public boolean isFileResource() throws GenericConfigException {
    ResourceLoader loader = ResourceLoader.getLoader(this.xmlFilename, this.loaderName);

    if (loader instanceof FileLoader) {
      return true;
    } else {
      return false;
    }
  }
  public String getFullLocation() throws GenericConfigException {
    ResourceLoader loader = ResourceLoader.getLoader(this.xmlFilename, this.loaderName);

    return loader.fullLocation(location);
  }