1
14
15 package com.liferay.portal.dao.orm.jpa;
16
17 import com.liferay.portal.kernel.dao.orm.Conjunction;
18 import com.liferay.portal.kernel.dao.orm.Criterion;
19 import com.liferay.portal.kernel.dao.orm.Disjunction;
20 import com.liferay.portal.kernel.dao.orm.RestrictionsFactory;
21
22 import java.util.Collection;
23 import java.util.Map;
24
25
31 public class RestrictionsFactoryImpl implements RestrictionsFactory {
32
33 public Criterion allEq(Map<String, Criterion> propertyNameValues) {
34 throw new UnsupportedOperationException();
35 }
36
37 public Criterion and(Criterion lhs, Criterion rhs) {
38 throw new UnsupportedOperationException();
39 }
40
41 public Criterion between(String propertyName, Object lo, Object hi) {
42 throw new UnsupportedOperationException();
43 }
44
45 public Conjunction conjunction() {
46 throw new UnsupportedOperationException();
47 }
48
49 public Disjunction disjunction() {
50 throw new UnsupportedOperationException();
51 }
52
53 public Criterion eq(String propertyName, Object value) {
54 throw new UnsupportedOperationException();
55 }
56
57 public Criterion eqProperty(String propertyName, String otherPropertyName) {
58 throw new UnsupportedOperationException();
59 }
60
61 public Criterion ge(String propertyName, Object value) {
62 throw new UnsupportedOperationException();
63 }
64
65 public Criterion geProperty(String propertyName, String otherPropertyName) {
66 throw new UnsupportedOperationException();
67 }
68
69 public Criterion gt(String propertyName, Object value) {
70 throw new UnsupportedOperationException();
71 }
72
73 public Criterion gtProperty(String propertyName, String otherPropertyName) {
74 throw new UnsupportedOperationException();
75 }
76
77 public Criterion ilike(String propertyName, Object value) {
78 throw new UnsupportedOperationException();
79 }
80
81 public Criterion in(String propertyName, Collection<Object> values) {
82 throw new UnsupportedOperationException();
83 }
84
85 public Criterion in(String propertyName, Object[] values) {
86 throw new UnsupportedOperationException();
87 }
88
89 public Criterion isEmpty(String propertyName) {
90 throw new UnsupportedOperationException();
91 }
92
93 public Criterion isNotEmpty(String propertyName) {
94 throw new UnsupportedOperationException();
95 }
96
97 public Criterion isNotNull(String propertyName) {
98 throw new UnsupportedOperationException();
99 }
100
101 public Criterion isNull(String propertyName) {
102 throw new UnsupportedOperationException();
103 }
104
105 public Criterion le(String propertyName, Object value) {
106 throw new UnsupportedOperationException();
107 }
108
109 public Criterion leProperty(String propertyName, String otherPropertyName) {
110 throw new UnsupportedOperationException();
111 }
112
113 public Criterion like(String propertyName, Object value) {
114 throw new UnsupportedOperationException();
115 }
116
117 public Criterion lt(String propertyName, Object value) {
118 throw new UnsupportedOperationException();
119 }
120
121 public Criterion ltProperty(String propertyName, String otherPropertyName) {
122 throw new UnsupportedOperationException();
123 }
124
125 public Criterion ne(String propertyName, Object value) {
126 throw new UnsupportedOperationException();
127 }
128
129 public Criterion neProperty(String propertyName, String otherPropertyName) {
130 throw new UnsupportedOperationException();
131 }
132
133 public Criterion not(Criterion expression) {
134 throw new UnsupportedOperationException();
135 }
136
137 public Criterion or(Criterion lhs, Criterion rhs) {
138 throw new UnsupportedOperationException();
139 }
140
141 public Criterion sizeEq(String propertyName, int size) {
142 throw new UnsupportedOperationException();
143 }
144
145 public Criterion sizeGe(String propertyName, int size) {
146 throw new UnsupportedOperationException();
147 }
148
149 public Criterion sizeGt(String propertyName, int size) {
150 throw new UnsupportedOperationException();
151 }
152
153 public Criterion sizeLe(String propertyName, int size) {
154 throw new UnsupportedOperationException();
155 }
156
157 public Criterion sizeLt(String propertyName, int size) {
158 throw new UnsupportedOperationException();
159 }
160
161 public Criterion sizeNe(String propertyName, int size) {
162 throw new UnsupportedOperationException();
163 }
164
165 }