Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b0be33d6136029c6cca1a1c9757f961ff2024ed7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*********************************************************************
 * Copyright (c) 2004, 2007 Boeing
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Boeing - initial API and implementation
 **********************************************************************/

package org.eclipse.osee.orcs;

import org.eclipse.osee.activity.api.ActivityLog;
import org.eclipse.osee.framework.core.OseeApi;
import org.eclipse.osee.framework.core.access.IAccessControlService;
import org.eclipse.osee.framework.core.data.IUserGroupService;
import org.eclipse.osee.jdbc.JdbcService;
import org.eclipse.osee.orcs.search.QueryFactory;
import org.eclipse.osee.orcs.search.QueryIndexer;
import org.eclipse.osee.orcs.transaction.TransactionFactory;

/**
 * @author Andrew M. Finkbeiner
 * @author Roberto E. Escobar
 */
public interface OrcsApi extends OseeApi {

   QueryIndexer getQueryIndexer();

   QueryFactory getQueryFactory();

   OrcsBranch getBranchOps();

   KeyValueOps getKeyValueOps();

   OrcsAdmin getAdminOps();

   TransactionFactory getTransactionFactory();

   OrcsPerformance getOrcsPerformance();

   OrcsTypes getOrcsTypes();

   SystemProperties getSystemProperties();

   OrcsApplicability getApplicabilityOps();

   IUserGroupService getUserGroupService();

   IAccessControlService getAccessControlService();

   JdbcService getJdbcService();

   ActivityLog getActivityLog();


   void ast();
}

Back to the top