1
22
23 package com.liferay.portal.bi.rules;
24
25 import com.liferay.portal.kernel.bi.rules.Fact;
26 import com.liferay.portal.kernel.bi.rules.Query;
27 import com.liferay.portal.kernel.bi.rules.RulesEngine;
28 import com.liferay.portal.kernel.bi.rules.RulesResourceRetriever;
29 import com.liferay.portal.kernel.messaging.proxy.BaseProxyBean;
30
31 import java.util.List;
32 import java.util.Map;
33
34
39 public class RulesEngineProxyBean extends BaseProxyBean implements RulesEngine {
40
41 public void add(
42 String domainName, RulesResourceRetriever RulesResourceRetriever,
43 ClassLoader... clientClassLoaders) {
44
45 throw new UnsupportedOperationException();
46 }
47
48 public boolean containsRuleDomain(String domainName) {
49 throw new UnsupportedOperationException();
50 }
51
52 public void execute(
53 RulesResourceRetriever RulesResourceRetriever, List<Fact<?>> facts,
54 ClassLoader... clientClassLoaders) {
55
56 throw new UnsupportedOperationException();
57 }
58
59 public Map<String, ?> execute(
60 RulesResourceRetriever RulesResourceRetriever, List<Fact<?>> facts,
61 Query query, ClassLoader... clientClassLoaders) {
62
63 throw new UnsupportedOperationException();
64 }
65
66 public void execute(
67 String domainName, List<Fact<?>> facts,
68 ClassLoader... clientClassLoaders) {
69
70 throw new UnsupportedOperationException();
71 }
72
73 public Map<String, ?> execute(
74 String domainName, List<Fact<?>> facts, Query query,
75 ClassLoader... clientClassLoaders) {
76
77 throw new UnsupportedOperationException();
78 }
79
80 public void remove(String domainName) {
81 throw new UnsupportedOperationException();
82 }
83
84 public void update(
85 String domainName, RulesResourceRetriever RulesResourceRetriever,
86 ClassLoader... clientClassLoaders) {
87
88 throw new UnsupportedOperationException();
89 }
90
91 }