View Javadoc
1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.kew.documentlink.dao;
17  
18  import java.util.List;
19  
20  import org.kuali.rice.kew.documentlink.DocumentLink;
21  
22  /**
23   * Data Access Object for {@link DocumentLink}.
24   *
25   * @author Kuali Rice Team (kuali-rice@googlegroups.com)
26   */
27  public interface DocumentLinkDAO {
28  
29      /**
30       * Get all docs linked to origin doc.
31       */
32      List<DocumentLink> getLinkedDocumentsByDocId(String docId);
33  
34      List<DocumentLink> getOutgoingLinkedDocumentsByDocId(String docId);
35  
36      /**
37       * save a link for 2 docs
38       */
39      DocumentLink saveDocumentLink(DocumentLink link);
40  
41      /**
42       * Delete a link between 2 docs.
43       */
44      void deleteDocumentLink(DocumentLink link);
45  
46      DocumentLink getDocumentLink(String documentLinkId);
47  
48  }