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.dao.orm.jpa;
016    
017    import com.liferay.portal.kernel.dao.orm.Conjunction;
018    import com.liferay.portal.kernel.dao.orm.Criterion;
019    import com.liferay.portal.kernel.dao.orm.Disjunction;
020    import com.liferay.portal.kernel.dao.orm.RestrictionsFactory;
021    
022    import java.util.Collection;
023    import java.util.Map;
024    
025    /**
026     * @author Prashant Dighe
027     * @author Brian Wing Shun Chan
028     */
029    public class RestrictionsFactoryImpl implements RestrictionsFactory {
030    
031            public Criterion allEq(Map<String, Criterion> propertyNameValues) {
032                    throw new UnsupportedOperationException();
033            }
034    
035            public Criterion and(Criterion lhs, Criterion rhs) {
036                    throw new UnsupportedOperationException();
037            }
038    
039            public Criterion between(String propertyName, Object lo, Object hi) {
040                    throw new UnsupportedOperationException();
041            }
042    
043            public Conjunction conjunction() {
044                    throw new UnsupportedOperationException();
045            }
046    
047            public Disjunction disjunction() {
048                    throw new UnsupportedOperationException();
049            }
050    
051            public Criterion eq(String propertyName, Object value) {
052                    throw new UnsupportedOperationException();
053            }
054    
055            public Criterion eqProperty(String propertyName, String otherPropertyName) {
056                    throw new UnsupportedOperationException();
057            }
058    
059            public Criterion ge(String propertyName, Object value) {
060                    throw new UnsupportedOperationException();
061            }
062    
063            public Criterion geProperty(String propertyName, String otherPropertyName) {
064                    throw new UnsupportedOperationException();
065            }
066    
067            public Criterion gt(String propertyName, Object value) {
068                    throw new UnsupportedOperationException();
069            }
070    
071            public Criterion gtProperty(String propertyName, String otherPropertyName) {
072                    throw new UnsupportedOperationException();
073            }
074    
075            public Criterion ilike(String propertyName, Object value) {
076                    throw new UnsupportedOperationException();
077            }
078    
079            public Criterion in(String propertyName, Collection<Object> values) {
080                    throw new UnsupportedOperationException();
081            }
082    
083            public Criterion in(String propertyName, Object[] values) {
084                    throw new UnsupportedOperationException();
085            }
086    
087            public Criterion isEmpty(String propertyName) {
088                    throw new UnsupportedOperationException();
089            }
090    
091            public Criterion isNotEmpty(String propertyName) {
092                    throw new UnsupportedOperationException();
093            }
094    
095            public Criterion isNotNull(String propertyName) {
096                    throw new UnsupportedOperationException();
097            }
098    
099            public Criterion isNull(String propertyName) {
100                    throw new UnsupportedOperationException();
101            }
102    
103            public Criterion le(String propertyName, Object value) {
104                    throw new UnsupportedOperationException();
105            }
106    
107            public Criterion leProperty(String propertyName, String otherPropertyName) {
108                    throw new UnsupportedOperationException();
109            }
110    
111            public Criterion like(String propertyName, Object value) {
112                    throw new UnsupportedOperationException();
113            }
114    
115            public Criterion lt(String propertyName, Object value) {
116                    throw new UnsupportedOperationException();
117            }
118    
119            public Criterion ltProperty(String propertyName, String otherPropertyName) {
120                    throw new UnsupportedOperationException();
121            }
122    
123            public Criterion ne(String propertyName, Object value) {
124                    throw new UnsupportedOperationException();
125            }
126    
127            public Criterion neProperty(String propertyName, String otherPropertyName) {
128                    throw new UnsupportedOperationException();
129            }
130    
131            public Criterion not(Criterion expression) {
132                    throw new UnsupportedOperationException();
133            }
134    
135            public Criterion or(Criterion lhs, Criterion rhs) {
136                    throw new UnsupportedOperationException();
137            }
138    
139            public Criterion sizeEq(String propertyName, int size) {
140                    throw new UnsupportedOperationException();
141            }
142    
143            public Criterion sizeGe(String propertyName, int size) {
144                    throw new UnsupportedOperationException();
145            }
146    
147            public Criterion sizeGt(String propertyName, int size) {
148                    throw new UnsupportedOperationException();
149            }
150    
151            public Criterion sizeLe(String propertyName, int size) {
152                    throw new UnsupportedOperationException();
153            }
154    
155            public Criterion sizeLt(String propertyName, int size) {
156                    throw new UnsupportedOperationException();
157            }
158    
159            public Criterion sizeNe(String propertyName, int size) {
160                    throw new UnsupportedOperationException();
161            }
162    
163    }