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

org.sakaiproject.entitybroker.dao.EntityBrokerDao Maven / Gradle / Ivy

/**
 * $Id$
 * $URL$
 * EntityBrokerDao.java - entity-broker - May 3, 2008 4:46:19 PM - azeckoski
 **************************************************************************
 * Copyright (c) 2008 The Sakai Foundation
 *
 * Licensed under the Educational Community License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.opensource.org/licenses/ECL-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.sakaiproject.entitybroker.dao;

import java.util.List;

import org.sakaiproject.genericdao.api.GeneralGenericDao;

/**
 * Interface for internal proxy only
 * 
 * @author Aaron Zeckoski ([email protected])
 */
public interface EntityBrokerDao extends GeneralGenericDao {

   /**
    * Get a list of unique entity references for a set of search params, all lists must be the same
    * size
    * 
    * @param properties
    *           the persistent object properties
    * @param values
    *           the values to match against the properties
    * @param comparisons
    *           the type of comparisons to make between property and value
    * @param relations
    *           the relation to the previous search param (must be "and" or "or") - note that the
    *           first relation is basically thrown away
    * @return a list of unique {@link String}s which represent entity references
    */
   public List getEntityRefsForSearch(List properties, List values,
         List comparisons, List relations);

   /**
    * Remove properties from an entity without wasting time doing a lookup first
    * 
    * @param entityReference
    *           unique reference to an entity
    * @param name
    *           the name of the property to remove, leaving this null will remove all properties
    * @return the number of properties removed
    */
   public int deleteProperties(String entityReference, String name);

   /**
    * Get all entity refs which match the given search and either match all tags or any tag
    * 
    * @param search should include restrictions on tags and optionally prefixes,
    * may optionally include order by tag, prefix, or ref
    * @param matchAll if true then all tags must match, if false then any tag can match
    * @return the list of refs
    */
   //public List getEntityRefsForTags(Search search, boolean matchAll);

   /**
    * Remove all given tags from an entity reference
    * @param entityReference
    * @param tags
    * @return the number of tags removed
    */
   public int deleteTags(String entityReference, String[] tags);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy