1 package org.opencrx.kernel.activity1.cci; 14 15 17 public interface ResourceFilter 18 extends 19 org.opencrx.kernel.depot1.cci.DepotReferenceHolderFilter, 20 org.opencrx.kernel.generic.cci.CrxObjectFilter { 21 22 29 public void forAllCalendar ( 30 short operator, 31 org.opencrx.kernel.activity1.cci.Calendar[] filterValues 32 ); 33 34 38 public void thereExistsCalendar ( 39 short operator, 40 org.opencrx.kernel.activity1.cci.Calendar[] filterValues 41 ); 42 43 47 public void forAllCalendar ( 48 short operator, 49 java.util.Collection filterValues 50 ); 51 52 56 public void thereExistsCalendar ( 57 short operator, 58 java.util.Collection filterValues 59 ); 60 61 68 public void forAllContact ( 69 short operator, 70 org.opencrx.kernel.account1.cci.Contact[] filterValues 71 ); 72 73 77 public void thereExistsContact ( 78 short operator, 79 org.opencrx.kernel.account1.cci.Contact[] filterValues 80 ); 81 82 86 public void forAllContact ( 87 short operator, 88 java.util.Collection filterValues 89 ); 90 91 95 public void thereExistsContact ( 96 short operator, 97 java.util.Collection filterValues 98 ); 99 100 107 public void forAllDescription ( 108 short operator, 109 String [] filterValues 110 ); 111 112 116 public void thereExistsDescription ( 117 short operator, 118 String [] filterValues 119 ); 120 121 125 public void forAllDescription ( 126 short operator, 127 java.util.Collection filterValues 128 ); 129 130 134 public void thereExistsDescription ( 135 short operator, 136 java.util.Collection filterValues 137 ); 138 139 144 public void orderByDescription ( 145 short order 146 ); 147 148 155 public void forAllName ( 156 short operator, 157 String [] filterValues 158 ); 159 160 164 public void thereExistsName ( 165 short operator, 166 String [] filterValues 167 ); 168 169 173 public void forAllName ( 174 short operator, 175 java.util.Collection filterValues 176 ); 177 178 182 public void thereExistsName ( 183 short operator, 184 java.util.Collection filterValues 185 ); 186 187 192 public void orderByName ( 193 short order 194 ); 195 196 203 public void forAllOvertimeRate ( 204 short operator, 205 java.math.BigDecimal [] filterValues 206 ); 207 208 212 public void thereExistsOvertimeRate ( 213 short operator, 214 java.math.BigDecimal [] filterValues 215 ); 216 217 221 public void forAllOvertimeRate ( 222 short operator, 223 java.util.Collection filterValues 224 ); 225 226 230 public void thereExistsOvertimeRate ( 231 short operator, 232 java.util.Collection filterValues 233 ); 234 235 240 public void orderByOvertimeRate ( 241 short order 242 ); 243 244 251 public void forAllRateCurrency ( 252 short operator, 253 short[] filterValues 254 ); 255 256 260 public void thereExistsRateCurrency ( 261 short operator, 262 short[] filterValues 263 ); 264 265 269 public void forAllRateCurrency ( 270 short operator, 271 java.util.Collection filterValues 272 ); 273 274 278 public void thereExistsRateCurrency ( 279 short operator, 280 java.util.Collection filterValues 281 ); 282 283 288 public void orderByRateCurrency ( 289 short order 290 ); 291 292 299 public void forAllStandardRate ( 300 short operator, 301 java.math.BigDecimal [] filterValues 302 ); 303 304 308 public void thereExistsStandardRate ( 309 short operator, 310 java.math.BigDecimal [] filterValues 311 ); 312 313 317 public void forAllStandardRate ( 318 short operator, 319 java.util.Collection filterValues 320 ); 321 322 326 public void thereExistsStandardRate ( 327 short operator, 328 java.util.Collection filterValues 329 ); 330 331 336 public void orderByStandardRate ( 337 short order 338 ); 339 340 } 344 | Popular Tags |