1 package org.opencrx.kernel.depot1.cci; 14 15 17 public interface BookingPeriodFilter 18 extends 19 org.opencrx.kernel.generic.cci.CrxObjectFilter { 20 21 28 public void forAllClosingBookingTypeThreshold ( 29 short operator, 30 short[] filterValues 31 ); 32 33 37 public void thereExistsClosingBookingTypeThreshold ( 38 short operator, 39 short[] filterValues 40 ); 41 42 46 public void forAllClosingBookingTypeThreshold ( 47 short operator, 48 java.util.Collection filterValues 49 ); 50 51 55 public void thereExistsClosingBookingTypeThreshold ( 56 short operator, 57 java.util.Collection filterValues 58 ); 59 60 65 public void orderByClosingBookingTypeThreshold ( 66 short order 67 ); 68 69 76 public void forAllDescription ( 77 short operator, 78 String [] filterValues 79 ); 80 81 85 public void thereExistsDescription ( 86 short operator, 87 String [] filterValues 88 ); 89 90 94 public void forAllDescription ( 95 short operator, 96 java.util.Collection filterValues 97 ); 98 99 103 public void thereExistsDescription ( 104 short operator, 105 java.util.Collection filterValues 106 ); 107 108 113 public void orderByDescription ( 114 short order 115 ); 116 117 124 public void forAllIsClosed ( 125 short operator, 126 boolean[] filterValues 127 ); 128 129 133 public void thereExistsIsClosed ( 134 short operator, 135 boolean[] filterValues 136 ); 137 138 142 public void forAllIsClosed ( 143 short operator, 144 java.util.Collection filterValues 145 ); 146 147 151 public void thereExistsIsClosed ( 152 short operator, 153 java.util.Collection filterValues 154 ); 155 156 161 public void orderByIsClosed ( 162 short order 163 ); 164 165 172 public void forAllIsFinal ( 173 short operator, 174 boolean[] filterValues 175 ); 176 177 181 public void thereExistsIsFinal ( 182 short operator, 183 boolean[] filterValues 184 ); 185 186 190 public void forAllIsFinal ( 191 short operator, 192 java.util.Collection filterValues 193 ); 194 195 199 public void thereExistsIsFinal ( 200 short operator, 201 java.util.Collection filterValues 202 ); 203 204 209 public void orderByIsFinal ( 210 short order 211 ); 212 213 220 public void forAllName ( 221 short operator, 222 String [] filterValues 223 ); 224 225 229 public void thereExistsName ( 230 short operator, 231 String [] filterValues 232 ); 233 234 238 public void forAllName ( 239 short operator, 240 java.util.Collection filterValues 241 ); 242 243 247 public void thereExistsName ( 248 short operator, 249 java.util.Collection filterValues 250 ); 251 252 257 public void orderByName ( 258 short order 259 ); 260 261 268 public void forAllPeriodEndsAtExclusive ( 269 short operator, 270 java.util.Date [] filterValues 271 ); 272 273 277 public void thereExistsPeriodEndsAtExclusive ( 278 short operator, 279 java.util.Date [] filterValues 280 ); 281 282 286 public void forAllPeriodEndsAtExclusive ( 287 short operator, 288 java.util.Collection filterValues 289 ); 290 291 295 public void thereExistsPeriodEndsAtExclusive ( 296 short operator, 297 java.util.Collection filterValues 298 ); 299 300 305 public void orderByPeriodEndsAtExclusive ( 306 short order 307 ); 308 309 316 public void forAllPeriodStartsAt ( 317 short operator, 318 java.util.Date [] filterValues 319 ); 320 321 325 public void thereExistsPeriodStartsAt ( 326 short operator, 327 java.util.Date [] filterValues 328 ); 329 330 334 public void forAllPeriodStartsAt ( 335 short operator, 336 java.util.Collection filterValues 337 ); 338 339 343 public void thereExistsPeriodStartsAt ( 344 short operator, 345 java.util.Collection filterValues 346 ); 347 348 353 public void orderByPeriodStartsAt ( 354 short order 355 ); 356 357 } 361 | Popular Tags |