All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mycore.datamodel.common.MCRLinkTableInterface Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.datamodel.common;

import java.util.Collection;
import java.util.Map;

/**
 * This interface is designed to choose the persistence for the link tables.
 * 
 * @author Jens Kupferschmidt
 * @version $Revision$ $Date$
 */
public interface MCRLinkTableInterface {

    /**
     * The method create a new item in the datastore.
     * 
     * @param from
     *            a string with the link ID MCRFROM
     * @param to
     *            a string with the link ID MCRTO
     * @param type
     *            a string with the link ID MCRTYPE
     * @param attr
     *            a string with the link ID MCRATTR
     */
    void create(String from, String to, String type, String attr);

    /**
     * The method remove a item for the from ID from the datastore.
     * 
     * @param from
     *            a string with the link ID MCRFROM
     * @param to
     *            an array of strings with the link ID MCRTO
     * @param type
     *            an array of strings with the link ID MCRTYPE
     */
    void delete(String from, String to, String type);

    /**
     * The method count the number of references with '%from%' and 'to' and
     * optional 'type' and optional 'restriction%' values of the table.
     * 
     * @param fromtype
     *            a substing in the from ID as String, it can be null
     * @param to
     *            the object ID as String, which is referenced
     * @param type
     *            the refernce type, it can be null
     * @param restriction
     *            a first part of the to ID as String, it can be null
     * @return the number of references
     */
    int countTo(String fromtype, String to, String type, String restriction);

    /**
     * The method returns a Map of all counted distinct references
     * 
     * @return
     * 
     * the result-map of (key,value)-pairs can be visualized as 
* select count(mcrfrom) as value, mcrto as key from * mcrlinkclass|mcrlinkhref where mcrto like mcrtoPrefix + '%' group by * mcrto; * */ Map getCountedMapOfMCRTO(String mcrtoPrefix); /** * Returns a List of all link sources of to and a special * type * * @param to * Destination-ID * @param type * Link reference type, this can be null. Current types are * classid, child, parent, reference and derivate. * @return List of Strings (Source-IDs) */ Collection getSourcesOf(String to, String type); /** * Returns a List of all link destination of from and a * special type * * @param from * Source-ID * @param type * Link reference type, this can be null. Current types are * classid, child, parent, reference and derivate. * @return List of Strings (Destination-IDs) */ Collection getDestinationsOf(String from, String type); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy