Package de.unigoettingen.sub.search.opac

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


  public String AddAdditionalOpacPpns() {
    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();
View Full Code Here


  public String AddMetadaFromOpacPpn() {
    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>();
View Full Code Here

   */
  public String OpacAuswerten() {
    clearValues();
    readProjectConfigs();
    try {
        ConfigOpacCatalogue coc = new ConfigOpac().getCatalogueByName(opacKatalog);
       
        myImportOpac = (IOpacPlugin) PluginLoader.getPluginByTitle(PluginType.Opac, coc.getOpacType());
       
      /* den Opac abfragen und ein RDF draus bauen lassen */
            this.myRdf = this.myImportOpac.search(this.opacSuchfeld, this.opacSuchbegriff, coc, this.prozessKopie.getRegelsatz().getPreferences());
      if (this.myImportOpac.getOpacDocType() != null) {
        this.docType = this.myImportOpac.getOpacDocType().getTitle();
View Full Code Here

TOP

Related Classes of de.unigoettingen.sub.search.opac.ConfigOpacCatalogue

Copyright © 2018 www.massapicom. 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.