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