Examples of IOpacPlugin


Examples of org.goobi.production.plugin.interfaces.IOpacPlugin

    StringTokenizer tokenizer = new StringTokenizer(this.additionalOpacPpns, "\r\n");
    while (tokenizer.hasMoreTokens()) {
      String tok = tokenizer.nextToken();
      try {
                ConfigOpacCatalogue coc = new ConfigOpac().getCatalogueByName(opacKatalog);
                IOpacPlugin iopac = (IOpacPlugin) PluginLoader.getPluginByTitle(PluginType.Opac, coc.getOpacType());

                Fileformat addrdf = iopac.search(this.opacSuchfeld, tok, coc, this.myPrefs);
        if (addrdf != null) {
          this.myDocStruct.addChild(addrdf.getDigitalDocument().getLogicalDocStruct());
          MetadatenalsTree3Einlesen1();
        } else {
          Helper.setMeldung(null, "Opac abgefragt: ", "kein Ergebnis");
View Full Code Here

Examples of org.goobi.production.plugin.interfaces.IOpacPlugin

    StringTokenizer tokenizer = new StringTokenizer(this.additionalOpacPpns, "\r\n");
    while (tokenizer.hasMoreTokens()) {
      String tok = tokenizer.nextToken();
      try {
                ConfigOpacCatalogue coc = new ConfigOpac().getCatalogueByName(opacKatalog);
                IOpacPlugin iopac = (IOpacPlugin) PluginLoader.getPluginByTitle(PluginType.Opac, coc.getOpacType());
                Fileformat addrdf = iopac.search(this.opacSuchfeld, tok, coc, this.myPrefs);
        if (addrdf != null) {

          /* die Liste aller erlaubten Metadatenelemente erstellen */
          List<String> erlaubte = new ArrayList<String>();
          for (Iterator<MetadataType> it = this.myDocStruct.getAddableMetadataTypes().iterator(); it.hasNext();) {
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.