1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.bi.rules;
16  
17  import com.liferay.portal.kernel.bi.rules.Fact;
18  import com.liferay.portal.kernel.bi.rules.Query;
19  import com.liferay.portal.kernel.bi.rules.RulesEngine;
20  import com.liferay.portal.kernel.bi.rules.RulesResourceRetriever;
21  import com.liferay.portal.kernel.messaging.proxy.BaseProxyBean;
22  
23  import java.util.List;
24  import java.util.Map;
25  
26  /**
27   * <a href="RulesEngineProxyBean.java.html"><b><i>View Source</i></b></a>
28   *
29   * @author Michael C. Han
30   */
31  public class RulesEngineProxyBean extends BaseProxyBean implements RulesEngine {
32  
33      public void add(
34          String domainName, RulesResourceRetriever RulesResourceRetriever,
35          ClassLoader... clientClassLoaders) {
36  
37          throw new UnsupportedOperationException();
38      }
39  
40      public boolean containsRuleDomain(String domainName) {
41          throw new UnsupportedOperationException();
42      }
43  
44      public void execute(
45          RulesResourceRetriever RulesResourceRetriever, List<Fact<?>> facts,
46          ClassLoader... clientClassLoaders) {
47  
48          throw new UnsupportedOperationException();
49      }
50  
51      public Map<String, ?> execute(
52          RulesResourceRetriever RulesResourceRetriever, List<Fact<?>> facts,
53          Query query, ClassLoader... clientClassLoaders) {
54  
55          throw new UnsupportedOperationException();
56      }
57  
58      public void execute(
59          String domainName, List<Fact<?>> facts,
60          ClassLoader... clientClassLoaders) {
61  
62          throw new UnsupportedOperationException();
63      }
64  
65      public Map<String, ?> execute(
66          String domainName, List<Fact<?>> facts, Query query,
67          ClassLoader... clientClassLoaders) {
68  
69          throw new UnsupportedOperationException();
70      }
71  
72      public void remove(String domainName) {
73          throw new UnsupportedOperationException();
74      }
75  
76      public void update(
77          String domainName, RulesResourceRetriever RulesResourceRetriever,
78          ClassLoader... clientClassLoaders) {
79  
80          throw new UnsupportedOperationException();
81      }
82  
83  }