001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.bi.rules;
016    
017    import com.liferay.portal.kernel.bi.rules.Fact;
018    import com.liferay.portal.kernel.bi.rules.Query;
019    import com.liferay.portal.kernel.bi.rules.RulesEngine;
020    import com.liferay.portal.kernel.bi.rules.RulesResourceRetriever;
021    import com.liferay.portal.kernel.messaging.proxy.BaseProxyBean;
022    
023    import java.util.List;
024    import java.util.Map;
025    
026    /**
027     * @author Michael C. Han
028     */
029    public class RulesEngineProxyBean extends BaseProxyBean implements RulesEngine {
030    
031            public void add(
032                    String domainName, RulesResourceRetriever RulesResourceRetriever,
033                    ClassLoader... clientClassLoaders) {
034    
035                    throw new UnsupportedOperationException();
036            }
037    
038            public boolean containsRuleDomain(String domainName) {
039                    throw new UnsupportedOperationException();
040            }
041    
042            public void execute(
043                    RulesResourceRetriever RulesResourceRetriever, List<Fact<?>> facts,
044                    ClassLoader... clientClassLoaders) {
045    
046                    throw new UnsupportedOperationException();
047            }
048    
049            public Map<String, ?> execute(
050                    RulesResourceRetriever RulesResourceRetriever, List<Fact<?>> facts,
051                    Query query, ClassLoader... clientClassLoaders) {
052    
053                    throw new UnsupportedOperationException();
054            }
055    
056            public void execute(
057                    String domainName, List<Fact<?>> facts,
058                    ClassLoader... clientClassLoaders) {
059    
060                    throw new UnsupportedOperationException();
061            }
062    
063            public Map<String, ?> execute(
064                    String domainName, List<Fact<?>> facts, Query query,
065                    ClassLoader... clientClassLoaders) {
066    
067                    throw new UnsupportedOperationException();
068            }
069    
070            public void remove(String domainName) {
071                    throw new UnsupportedOperationException();
072            }
073    
074            public void update(
075                    String domainName, RulesResourceRetriever RulesResourceRetriever,
076                    ClassLoader... clientClassLoaders) {
077    
078                    throw new UnsupportedOperationException();
079            }
080    
081    }