Examples of ConfigOpac


Examples of de.unigoettingen.sub.search.opac.ConfigOpac

    }
  }

  public List<String> getAllOpacCatalogues() {
    try {
      return new ConfigOpac().getAllCatalogueTitles();
    } catch (IOException e) {
      myLogger.error("Error while reading von opac-config", e);
      Helper.setFehlerMeldung("Error while reading von opac-config", e);
      return new ArrayList<String>();
    }
View Full Code Here

Examples of de.unigoettingen.sub.search.opac.ConfigOpac

    }
  }

  public List<ConfigOpacDoctype> getAllDoctypes() {
    try {
      return new ConfigOpac().getAllDoctypes();
    } catch (IOException e) {
      myLogger.error("Error while reading von opac-config", e);
      Helper.setFehlerMeldung("Error while reading von opac-config", e);
      return new ArrayList<ConfigOpacDoctype>();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.