1 package org.opencrx.kernel.activity1.cci; 14 15 17 public interface ActivityFilter 18 extends 19 org.opencrx.kernel.depot1.cci.DepotReferenceHolderFilter, 20 org.opencrx.kernel.generic.cci.CrxObjectFilter { 21 22 29 public void forAllActivityNumber ( 30 short operator, 31 String [] filterValues 32 ); 33 34 38 public void thereExistsActivityNumber ( 39 short operator, 40 String [] filterValues 41 ); 42 43 47 public void forAllActivityNumber ( 48 short operator, 49 java.util.Collection filterValues 50 ); 51 52 56 public void thereExistsActivityNumber ( 57 short operator, 58 java.util.Collection filterValues 59 ); 60 61 66 public void orderByActivityNumber ( 67 short order 68 ); 69 70 77 public void forAllActivityState ( 78 short operator, 79 short[] filterValues 80 ); 81 82 86 public void thereExistsActivityState ( 87 short operator, 88 short[] filterValues 89 ); 90 91 95 public void forAllActivityState ( 96 short operator, 97 java.util.Collection filterValues 98 ); 99 100 104 public void thereExistsActivityState ( 105 short operator, 106 java.util.Collection filterValues 107 ); 108 109 114 public void orderByActivityState ( 115 short order 116 ); 117 118 125 public void forAllActivityType ( 126 short operator, 127 org.opencrx.kernel.activity1.cci.ActivityType[] filterValues 128 ); 129 130 134 public void thereExistsActivityType ( 135 short operator, 136 org.opencrx.kernel.activity1.cci.ActivityType[] filterValues 137 ); 138 139 143 public void forAllActivityType ( 144 short operator, 145 java.util.Collection filterValues 146 ); 147 148 152 public void thereExistsActivityType ( 153 short operator, 154 java.util.Collection filterValues 155 ); 156 157 164 public void forAllActualEffortHours ( 165 short operator, 166 int[] filterValues 167 ); 168 169 173 public void thereExistsActualEffortHours ( 174 short operator, 175 int[] filterValues 176 ); 177 178 182 public void forAllActualEffortHours ( 183 short operator, 184 java.util.Collection filterValues 185 ); 186 187 191 public void thereExistsActualEffortHours ( 192 short operator, 193 java.util.Collection filterValues 194 ); 195 196 201 public void orderByActualEffortHours ( 202 short order 203 ); 204 205 212 public void forAllActualEffortMinutes ( 213 short operator, 214 int[] filterValues 215 ); 216 217 221 public void thereExistsActualEffortMinutes ( 222 short operator, 223 int[] filterValues 224 ); 225 226 230 public void forAllActualEffortMinutes ( 231 short operator, 232 java.util.Collection filterValues 233 ); 234 235 239 public void thereExistsActualEffortMinutes ( 240 short operator, 241 java.util.Collection filterValues 242 ); 243 244 249 public void orderByActualEffortMinutes ( 250 short order 251 ); 252 253 260 public void forAllActualEnd ( 261 short operator, 262 java.util.Date [] filterValues 263 ); 264 265 269 public void thereExistsActualEnd ( 270 short operator, 271 java.util.Date [] filterValues 272 ); 273 274 278 public void forAllActualEnd ( 279 short operator, 280 java.util.Collection filterValues 281 ); 282 283 287 public void thereExistsActualEnd ( 288 short operator, 289 java.util.Collection filterValues 290 ); 291 292 297 public void orderByActualEnd ( 298 short order 299 ); 300 301 308 public void forAllActualStart ( 309 short operator, 310 java.util.Date [] filterValues 311 ); 312 313 317 public void thereExistsActualStart ( 318 short operator, 319 java.util.Date [] filterValues 320 ); 321 322 326 public void forAllActualStart ( 327 short operator, 328 java.util.Collection filterValues 329 ); 330 331 335 public void thereExistsActualStart ( 336 short operator, 337 java.util.Collection filterValues 338 ); 339 340 345 public void orderByActualStart ( 346 short order 347 ); 348 349 356 public void forAllAssignedTo ( 357 short operator, 358 org.opencrx.kernel.account1.cci.Contact[] filterValues 359 ); 360 361 365 public void thereExistsAssignedTo ( 366 short operator, 367 org.opencrx.kernel.account1.cci.Contact[] filterValues 368 ); 369 370 374 public void forAllAssignedTo ( 375 short operator, 376 java.util.Collection filterValues 377 ); 378 379 383 public void thereExistsAssignedTo ( 384 short operator, 385 java.util.Collection filterValues 386 ); 387 388 395 public void forAllContract ( 396 short operator, 397 org.opencrx.kernel.contract1.cci.AbstractContract[] filterValues 398 ); 399 400 404 public void thereExistsContract ( 405 short operator, 406 org.opencrx.kernel.contract1.cci.AbstractContract[] filterValues 407 ); 408 409 413 public void forAllContract ( 414 short operator, 415 java.util.Collection filterValues 416 ); 417 418 422 public void thereExistsContract ( 423 short operator, 424 java.util.Collection filterValues 425 ); 426 427 434 public void forAllDescription ( 435 short operator, 436 String [] filterValues 437 ); 438 439 443 public void thereExistsDescription ( 444 short operator, 445 String [] filterValues 446 ); 447 448 452 public void forAllDescription ( 453 short operator, 454 java.util.Collection filterValues 455 ); 456 457 461 public void thereExistsDescription ( 462 short operator, 463 java.util.Collection filterValues 464 ); 465 466 471 public void orderByDescription ( 472 short order 473 ); 474 475 482 public void forAllDetailedDescription ( 483 short operator, 484 String [] filterValues 485 ); 486 487 491 public void thereExistsDetailedDescription ( 492 short operator, 493 String [] filterValues 494 ); 495 496 500 public void forAllDetailedDescription ( 501 short operator, 502 java.util.Collection filterValues 503 ); 504 505 509 public void thereExistsDetailedDescription ( 510 short operator, 511 java.util.Collection filterValues 512 ); 513 514 519 public void orderByDetailedDescription ( 520 short order 521 ); 522 523 530 public void forAllDueBy ( 531 short operator, 532 java.util.Date [] filterValues 533 ); 534 535 539 public void thereExistsDueBy ( 540 short operator, 541 java.util.Date [] filterValues 542 ); 543 544 548 public void forAllDueBy ( 549 short operator, 550 java.util.Collection filterValues 551 ); 552 553 557 public void thereExistsDueBy ( 558 short operator, 559 java.util.Collection filterValues 560 ); 561 562 567 public void orderByDueBy ( 568 short order 569 ); 570 571 578 public void forAllLastTransition ( 579 short operator, 580 org.opencrx.kernel.activity1.cci.ActivityProcessTransition[] filterValues 581 ); 582 583 587 public void thereExistsLastTransition ( 588 short operator, 589 org.opencrx.kernel.activity1.cci.ActivityProcessTransition[] filterValues 590 ); 591 592 596 public void forAllLastTransition ( 597 short operator, 598 java.util.Collection filterValues 599 ); 600 601 605 public void thereExistsLastTransition ( 606 short operator, 607 java.util.Collection filterValues 608 ); 609 610 617 public void forAllMisc1 ( 618 short operator, 619 String [] filterValues 620 ); 621 622 626 public void thereExistsMisc1 ( 627 short operator, 628 String [] filterValues 629 ); 630 631 635 public void forAllMisc1 ( 636 short operator, 637 java.util.Collection filterValues 638 ); 639 640 644 public void thereExistsMisc1 ( 645 short operator, 646 java.util.Collection filterValues 647 ); 648 649 654 public void orderByMisc1 ( 655 short order 656 ); 657 658 665 public void forAllMisc2 ( 666 short operator, 667 String [] filterValues 668 ); 669 670 674 public void thereExistsMisc2 ( 675 short operator, 676 String [] filterValues 677 ); 678 679 683 public void forAllMisc2 ( 684 short operator, 685 java.util.Collection filterValues 686 ); 687 688 692 public void thereExistsMisc2 ( 693 short operator, 694 java.util.Collection filterValues 695 ); 696 697 702 public void orderByMisc2 ( 703 short order 704 ); 705 706 713 public void forAllMisc3 ( 714 short operator, 715 String [] filterValues 716 ); 717 718 722 public void thereExistsMisc3 ( 723 short operator, 724 String [] filterValues 725 ); 726 727 731 public void forAllMisc3 ( 732 short operator, 733 java.util.Collection filterValues 734 ); 735 736 740 public void thereExistsMisc3 ( 741 short operator, 742 java.util.Collection filterValues 743 ); 744 745 750 public void orderByMisc3 ( 751 short order 752 ); 753 754 761 public void forAllName ( 762 short operator, 763 String [] filterValues 764 ); 765 766 770 public void thereExistsName ( 771 short operator, 772 String [] filterValues 773 ); 774 775 779 public void forAllName ( 780 short operator, 781 java.util.Collection filterValues 782 ); 783 784 788 public void thereExistsName ( 789 short operator, 790 java.util.Collection filterValues 791 ); 792 793 798 public void orderByName ( 799 short order 800 ); 801 802 809 public void forAllOriginalScheduledEnd ( 810 short operator, 811 java.util.Date [] filterValues 812 ); 813 814 818 public void thereExistsOriginalScheduledEnd ( 819 short operator, 820 java.util.Date [] filterValues 821 ); 822 823 827 public void forAllOriginalScheduledEnd ( 828 short operator, 829 java.util.Collection filterValues 830 ); 831 832 836 public void thereExistsOriginalScheduledEnd ( 837 short operator, 838 java.util.Collection filterValues 839 ); 840 841 846 public void orderByOriginalScheduledEnd ( 847 short order 848 ); 849 850 857 public void forAllPercentComplete ( 858 short operator, 859 short[] filterValues 860 ); 861 862 866 public void thereExistsPercentComplete ( 867 short operator, 868 short[] filterValues 869 ); 870 871 875 public void forAllPercentComplete ( 876 short operator, 877 java.util.Collection filterValues 878 ); 879 880 884 public void thereExistsPercentComplete ( 885 short operator, 886 java.util.Collection filterValues 887 ); 888 889 894 public void orderByPercentComplete ( 895 short order 896 ); 897 898 905 public void forAllPriority ( 906 short operator, 907 short[] filterValues 908 ); 909 910 914 public void thereExistsPriority ( 915 short operator, 916 short[] filterValues 917 ); 918 919 923 public void forAllPriority ( 924 short operator, 925 java.util.Collection filterValues 926 ); 927 928 932 public void thereExistsPriority ( 933 short operator, 934 java.util.Collection filterValues 935 ); 936 937 942 public void orderByPriority ( 943 short order 944 ); 945 946 953 public void forAllProcessState ( 954 short operator, 955 org.opencrx.kernel.activity1.cci.ActivityProcessState[] filterValues 956 ); 957 958 962 public void thereExistsProcessState ( 963 short operator, 964 org.opencrx.kernel.activity1.cci.ActivityProcessState[] filterValues 965 ); 966 967 971 public void forAllProcessState ( 972 short operator, 973 java.util.Collection filterValues 974 ); 975 976 980 public void thereExistsProcessState ( 981 short operator, 982 java.util.Collection filterValues 983 ); 984 985 992 public void forAllReportingAccount ( 993 short operator, 994 org.opencrx.kernel.account1.cci.Account[] filterValues 995 ); 996 997 1001 public void thereExistsReportingAccount ( 1002 short operator, 1003 org.opencrx.kernel.account1.cci.Account[] filterValues 1004 ); 1005 1006 1010 public void forAllReportingAccount ( 1011 short operator, 1012 java.util.Collection filterValues 1013 ); 1014 1015 1019 public void thereExistsReportingAccount ( 1020 short operator, 1021 java.util.Collection filterValues 1022 ); 1023 1024 1031 public void forAllReportingContact ( 1032 short operator, 1033 org.opencrx.kernel.account1.cci.Contact[] filterValues 1034 ); 1035 1036 1040 public void thereExistsReportingContact ( 1041 short operator, 1042 org.opencrx.kernel.account1.cci.Contact[] filterValues 1043 ); 1044 1045 1049 public void forAllReportingContact ( 1050 short operator, 1051 java.util.Collection filterValues 1052 ); 1053 1054 1058 public void thereExistsReportingContact ( 1059 short operator, 1060 java.util.Collection filterValues 1061 ); 1062 1063 1070 public void forAllScheduledEnd ( 1071 short operator, 1072 java.util.Date [] filterValues 1073 ); 1074 1075 1079 public void thereExistsScheduledEnd ( 1080 short operator, 1081 java.util.Date [] filterValues 1082 ); 1083 1084 1088 public void forAllScheduledEnd ( 1089 short operator, 1090 java.util.Collection filterValues 1091 ); 1092 1093 1097 public void thereExistsScheduledEnd ( 1098 short operator, 1099 java.util.Collection filterValues 1100 ); 1101 1102 1107 public void orderByScheduledEnd ( 1108 short order 1109 ); 1110 1111 1118 public void forAllScheduledStart ( 1119 short operator, 1120 java.util.Date [] filterValues 1121 ); 1122 1123 1127 public void thereExistsScheduledStart ( 1128 short operator, 1129 java.util.Date [] filterValues 1130 ); 1131 1132 1136 public void forAllScheduledStart ( 1137 short operator, 1138 java.util.Collection filterValues 1139 ); 1140 1141 1145 public void thereExistsScheduledStart ( 1146 short operator, 1147 java.util.Collection filterValues 1148 ); 1149 1150 1155 public void orderByScheduledStart ( 1156 short order 1157 ); 1158 1159 1166 public void forAllTotalVotes ( 1167 short operator, 1168 int[] filterValues 1169 ); 1170 1171 1175 public void thereExistsTotalVotes ( 1176 short operator, 1177 int[] filterValues 1178 ); 1179 1180 1184 public void forAllTotalVotes ( 1185 short operator, 1186 java.util.Collection filterValues 1187 ); 1188 1189 1193 public void thereExistsTotalVotes ( 1194 short operator, 1195 java.util.Collection filterValues 1196 ); 1197 1198 1203 public void orderByTotalVotes ( 1204 short order 1205 ); 1206 1207} 1211 | Popular Tags |