001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
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    }