view software/eXist/mpdl-modules/src/org/exist/xquery/modules/mpdldoc/MPDLDocModule.java @ 0:408254cf2f1d

Erstellung
author Josef Willenborg <jwillenborg@mpiwg-berlin.mpg.de>
date Wed, 24 Nov 2010 17:24:23 +0100
parents
children 257f67be5c00
line wrap: on
line source

/*
 *  eXist Open Source Native XML Database: Extension module
 *  Copyright (C) 2008 Josef Willenborg
 *  jwillenborg@mpiwg-berlin.mpg.de
 *  http://www.mpiwg-berlin.mpg.de
 *  
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public License
 *  as published by the Free Software Foundation; either version 2
 *  of the License, or (at your option) any later version.
 *  
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Lesser General Public License for more details.
 *  
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *  
 *  $Id: TextModule.java $
 */
package org.exist.xquery.modules.mpdldoc;

import org.exist.xquery.AbstractInternalModule;
import org.exist.xquery.FunctionDef;

/**
 * @author Josef Willenborg (jwillenborg@mpiwg-berlin.mpg.de)
 */
public class MPDLDocModule extends AbstractInternalModule {
	public final static String NAMESPACE_URI = "http://exist-db.org/xquery/mpdldoc";
	public final static String PREFIX = "mpdldoc";
	
	private final static FunctionDef[] functions = {
    new FunctionDef(CheckUri.signature, CheckUri.class),
    new FunctionDef(MpdlDocOperationStarter.signature, MpdlDocOperationStarter.class),
    new FunctionDef(ESciDocLogin.signature, ESciDocLogin.class),
    new FunctionDef(GetESciDocs.signature, GetESciDocs.class),
    new FunctionDef(GetJobs.signature, GetJobs.class),
    new FunctionDef(GetESciDocContainerIdByExistId.signature, GetESciDocContainerIdByExistId.class),
    new FunctionDef(Html2Pdf.signature, Html2Pdf.class)
	};
	
	public MPDLDocModule() {
		super(functions);
	}

	public String getNamespaceURI() {
		return NAMESPACE_URI;
	}

	public String getDefaultPrefix() {
		return PREFIX;
	}

	public String getDescription() {
		return "A module for document functions";
	}
  
  public String getReleaseVersion() {
    return "A module for document functions";
  }
}