1
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
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 }