1 package org.opencrx.kernel.account1.cci; 14 15 public class AccountFilterPropertyFilterImpl 16 extends org.openmdx.base.accessor.jmi.spi.RefFilter_1 17 implements AccountFilterPropertyFilter { 18 19 public AccountFilterPropertyFilterImpl( 20 org.openmdx.base.accessor.jmi.cci.RefPackage_1_0 aPackage 21 ) { 22 super( 23 aPackage, 24 "org:opencrx:kernel:account1:AccountFilterProperty", 25 null, 26 null 27 ); 28 } 29 30 public AccountFilterPropertyFilterImpl( 31 org.openmdx.base.accessor.jmi.cci.RefPackage_1_0 aPackage, 32 org.openmdx.compatibility.base.query.FilterProperty[] filterProperties, 33 org.openmdx.compatibility.base.dataprovider.cci.AttributeSpecifier[] attributeSpecifiers 34 ) { 35 super( 36 aPackage, 37 "org:opencrx:kernel:account1:AccountFilterProperty", 38 filterProperties, 39 attributeSpecifiers 40 ); 41 } 42 43 public void forAllDescription ( 47 short operator, 48 java.util.Collection values 49 ) { 50 refAddValue( 51 "org:opencrx:kernel:base:AbstractFilterProperty:description", 52 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 53 operator, 54 values 55 ); 56 } 57 58 public void thereExistsDescription ( 59 short operator, 60 java.util.Collection values 61 ) { 62 refAddValue( 63 "org:opencrx:kernel:base:AbstractFilterProperty:description", 64 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 65 operator, 66 values 67 ); 68 } 69 70 public void forAllDescription ( 71 short operator, 72 String [] filterValues 73 ) { 74 java.util.List arrayAsList = new java.util.ArrayList (); 75 for(int i = 0; i < filterValues.length; i++) { 76 arrayAsList.add( 77 filterValues[i] 78 ); 79 } 80 forAllDescription ( 81 operator, 82 arrayAsList 83 ); 84 } 85 86 public void thereExistsDescription ( 87 short operator, 88 String [] filterValues 89 ) { 90 java.util.List arrayAsList = new java.util.ArrayList (); 91 for(int i = 0; i < filterValues.length; i++) { 92 arrayAsList.add( 93 filterValues[i] 94 ); 95 } 96 thereExistsDescription ( 97 operator, 98 arrayAsList 99 ); 100 } 101 102 public void orderByDescription ( 103 short order 104 ) { 105 refAddValue( 106 "org:opencrx:kernel:base:AbstractFilterProperty:description", 107 order 108 ); 109 } 110 111 public void forAllFilterOperator ( 115 short operator, 116 java.util.Collection values 117 ) { 118 refAddValue( 119 "org:opencrx:kernel:base:AbstractFilterProperty:filterOperator", 120 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 121 operator, 122 values 123 ); 124 } 125 126 public void thereExistsFilterOperator ( 127 short operator, 128 java.util.Collection values 129 ) { 130 refAddValue( 131 "org:opencrx:kernel:base:AbstractFilterProperty:filterOperator", 132 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 133 operator, 134 values 135 ); 136 } 137 138 public void forAllFilterOperator ( 139 short operator, 140 short[] filterValues 141 ) { 142 java.util.List arrayAsList = new java.util.ArrayList (); 143 for(int i = 0; i < filterValues.length; i++) { 144 arrayAsList.add( 145 new Short (filterValues[i]) 146 ); 147 } 148 forAllFilterOperator ( 149 operator, 150 arrayAsList 151 ); 152 } 153 154 public void thereExistsFilterOperator ( 155 short operator, 156 short[] filterValues 157 ) { 158 java.util.List arrayAsList = new java.util.ArrayList (); 159 for(int i = 0; i < filterValues.length; i++) { 160 arrayAsList.add( 161 new Short (filterValues[i]) 162 ); 163 } 164 thereExistsFilterOperator ( 165 operator, 166 arrayAsList 167 ); 168 } 169 170 public void orderByFilterOperator ( 171 short order 172 ) { 173 refAddValue( 174 "org:opencrx:kernel:base:AbstractFilterProperty:filterOperator", 175 order 176 ); 177 } 178 179 public void forAllFilterQuantor ( 183 short operator, 184 java.util.Collection values 185 ) { 186 refAddValue( 187 "org:opencrx:kernel:base:AbstractFilterProperty:filterQuantor", 188 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 189 operator, 190 values 191 ); 192 } 193 194 public void thereExistsFilterQuantor ( 195 short operator, 196 java.util.Collection values 197 ) { 198 refAddValue( 199 "org:opencrx:kernel:base:AbstractFilterProperty:filterQuantor", 200 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 201 operator, 202 values 203 ); 204 } 205 206 public void forAllFilterQuantor ( 207 short operator, 208 short[] filterValues 209 ) { 210 java.util.List arrayAsList = new java.util.ArrayList (); 211 for(int i = 0; i < filterValues.length; i++) { 212 arrayAsList.add( 213 new Short (filterValues[i]) 214 ); 215 } 216 forAllFilterQuantor ( 217 operator, 218 arrayAsList 219 ); 220 } 221 222 public void thereExistsFilterQuantor ( 223 short operator, 224 short[] filterValues 225 ) { 226 java.util.List arrayAsList = new java.util.ArrayList (); 227 for(int i = 0; i < filterValues.length; i++) { 228 arrayAsList.add( 229 new Short (filterValues[i]) 230 ); 231 } 232 thereExistsFilterQuantor ( 233 operator, 234 arrayAsList 235 ); 236 } 237 238 public void orderByFilterQuantor ( 239 short order 240 ) { 241 refAddValue( 242 "org:opencrx:kernel:base:AbstractFilterProperty:filterQuantor", 243 order 244 ); 245 } 246 247 public void forAllIsActive ( 251 short operator, 252 java.util.Collection values 253 ) { 254 refAddValue( 255 "org:opencrx:kernel:base:AbstractFilterProperty:isActive", 256 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 257 operator, 258 values 259 ); 260 } 261 262 public void thereExistsIsActive ( 263 short operator, 264 java.util.Collection values 265 ) { 266 refAddValue( 267 "org:opencrx:kernel:base:AbstractFilterProperty:isActive", 268 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 269 operator, 270 values 271 ); 272 } 273 274 public void forAllIsActive ( 275 short operator, 276 boolean[] filterValues 277 ) { 278 java.util.List arrayAsList = new java.util.ArrayList (); 279 for(int i = 0; i < filterValues.length; i++) { 280 arrayAsList.add( 281 new Boolean (filterValues[i]) 282 ); 283 } 284 forAllIsActive ( 285 operator, 286 arrayAsList 287 ); 288 } 289 290 public void thereExistsIsActive ( 291 short operator, 292 boolean[] filterValues 293 ) { 294 java.util.List arrayAsList = new java.util.ArrayList (); 295 for(int i = 0; i < filterValues.length; i++) { 296 arrayAsList.add( 297 new Boolean (filterValues[i]) 298 ); 299 } 300 thereExistsIsActive ( 301 operator, 302 arrayAsList 303 ); 304 } 305 306 public void orderByIsActive ( 307 short order 308 ) { 309 refAddValue( 310 "org:opencrx:kernel:base:AbstractFilterProperty:isActive", 311 order 312 ); 313 } 314 315 public void forAllName ( 319 short operator, 320 java.util.Collection values 321 ) { 322 refAddValue( 323 "org:opencrx:kernel:base:AbstractFilterProperty:name", 324 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 325 operator, 326 values 327 ); 328 } 329 330 public void thereExistsName ( 331 short operator, 332 java.util.Collection values 333 ) { 334 refAddValue( 335 "org:opencrx:kernel:base:AbstractFilterProperty:name", 336 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 337 operator, 338 values 339 ); 340 } 341 342 public void forAllName ( 343 short operator, 344 String [] filterValues 345 ) { 346 java.util.List arrayAsList = new java.util.ArrayList (); 347 for(int i = 0; i < filterValues.length; i++) { 348 arrayAsList.add( 349 filterValues[i] 350 ); 351 } 352 forAllName ( 353 operator, 354 arrayAsList 355 ); 356 } 357 358 public void thereExistsName ( 359 short operator, 360 String [] filterValues 361 ) { 362 java.util.List arrayAsList = new java.util.ArrayList (); 363 for(int i = 0; i < filterValues.length; i++) { 364 arrayAsList.add( 365 filterValues[i] 366 ); 367 } 368 thereExistsName ( 369 operator, 370 arrayAsList 371 ); 372 } 373 374 public void orderByName ( 375 short order 376 ) { 377 refAddValue( 378 "org:opencrx:kernel:base:AbstractFilterProperty:name", 379 order 380 ); 381 } 382 383 public void forAllAccessLevelBrowse ( 387 short operator, 388 java.util.Collection values 389 ) { 390 refAddValue( 391 "org:opencrx:kernel:base:SecureObject:accessLevelBrowse", 392 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 393 operator, 394 values 395 ); 396 } 397 398 public void thereExistsAccessLevelBrowse ( 399 short operator, 400 java.util.Collection values 401 ) { 402 refAddValue( 403 "org:opencrx:kernel:base:SecureObject:accessLevelBrowse", 404 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 405 operator, 406 values 407 ); 408 } 409 410 public void forAllAccessLevelBrowse ( 411 short operator, 412 short[] filterValues 413 ) { 414 java.util.List arrayAsList = new java.util.ArrayList (); 415 for(int i = 0; i < filterValues.length; i++) { 416 arrayAsList.add( 417 new Short (filterValues[i]) 418 ); 419 } 420 forAllAccessLevelBrowse ( 421 operator, 422 arrayAsList 423 ); 424 } 425 426 public void thereExistsAccessLevelBrowse ( 427 short operator, 428 short[] filterValues 429 ) { 430 java.util.List arrayAsList = new java.util.ArrayList (); 431 for(int i = 0; i < filterValues.length; i++) { 432 arrayAsList.add( 433 new Short (filterValues[i]) 434 ); 435 } 436 thereExistsAccessLevelBrowse ( 437 operator, 438 arrayAsList 439 ); 440 } 441 442 public void orderByAccessLevelBrowse ( 443 short order 444 ) { 445 refAddValue( 446 "org:opencrx:kernel:base:SecureObject:accessLevelBrowse", 447 order 448 ); 449 } 450 451 public void forAllAccessLevelDelete ( 455 short operator, 456 java.util.Collection values 457 ) { 458 refAddValue( 459 "org:opencrx:kernel:base:SecureObject:accessLevelDelete", 460 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 461 operator, 462 values 463 ); 464 } 465 466 public void thereExistsAccessLevelDelete ( 467 short operator, 468 java.util.Collection values 469 ) { 470 refAddValue( 471 "org:opencrx:kernel:base:SecureObject:accessLevelDelete", 472 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 473 operator, 474 values 475 ); 476 } 477 478 public void forAllAccessLevelDelete ( 479 short operator, 480 short[] filterValues 481 ) { 482 java.util.List arrayAsList = new java.util.ArrayList (); 483 for(int i = 0; i < filterValues.length; i++) { 484 arrayAsList.add( 485 new Short (filterValues[i]) 486 ); 487 } 488 forAllAccessLevelDelete ( 489 operator, 490 arrayAsList 491 ); 492 } 493 494 public void thereExistsAccessLevelDelete ( 495 short operator, 496 short[] filterValues 497 ) { 498 java.util.List arrayAsList = new java.util.ArrayList (); 499 for(int i = 0; i < filterValues.length; i++) { 500 arrayAsList.add( 501 new Short (filterValues[i]) 502 ); 503 } 504 thereExistsAccessLevelDelete ( 505 operator, 506 arrayAsList 507 ); 508 } 509 510 public void orderByAccessLevelDelete ( 511 short order 512 ) { 513 refAddValue( 514 "org:opencrx:kernel:base:SecureObject:accessLevelDelete", 515 order 516 ); 517 } 518 519 public void forAllAccessLevelUpdate ( 523 short operator, 524 java.util.Collection values 525 ) { 526 refAddValue( 527 "org:opencrx:kernel:base:SecureObject:accessLevelUpdate", 528 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 529 operator, 530 values 531 ); 532 } 533 534 public void thereExistsAccessLevelUpdate ( 535 short operator, 536 java.util.Collection values 537 ) { 538 refAddValue( 539 "org:opencrx:kernel:base:SecureObject:accessLevelUpdate", 540 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 541 operator, 542 values 543 ); 544 } 545 546 public void forAllAccessLevelUpdate ( 547 short operator, 548 short[] filterValues 549 ) { 550 java.util.List arrayAsList = new java.util.ArrayList (); 551 for(int i = 0; i < filterValues.length; i++) { 552 arrayAsList.add( 553 new Short (filterValues[i]) 554 ); 555 } 556 forAllAccessLevelUpdate ( 557 operator, 558 arrayAsList 559 ); 560 } 561 562 public void thereExistsAccessLevelUpdate ( 563 short operator, 564 short[] filterValues 565 ) { 566 java.util.List arrayAsList = new java.util.ArrayList (); 567 for(int i = 0; i < filterValues.length; i++) { 568 arrayAsList.add( 569 new Short (filterValues[i]) 570 ); 571 } 572 thereExistsAccessLevelUpdate ( 573 operator, 574 arrayAsList 575 ); 576 } 577 578 public void orderByAccessLevelUpdate ( 579 short order 580 ) { 581 refAddValue( 582 "org:opencrx:kernel:base:SecureObject:accessLevelUpdate", 583 order 584 ); 585 } 586 587 public void forAllOwner ( 591 short operator, 592 java.util.Collection values 593 ) { 594 refAddValue( 595 "org:opencrx:kernel:base:SecureObject:owner", 596 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 597 operator, 598 values 599 ); 600 } 601 602 public void thereExistsOwner ( 603 short operator, 604 java.util.Collection values 605 ) { 606 refAddValue( 607 "org:opencrx:kernel:base:SecureObject:owner", 608 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 609 operator, 610 values 611 ); 612 } 613 614 public void forAllOwner ( 615 short operator, 616 String [] filterValues 617 ) { 618 java.util.List arrayAsList = new java.util.ArrayList (); 619 for(int i = 0; i < filterValues.length; i++) { 620 arrayAsList.add( 621 filterValues[i] 622 ); 623 } 624 forAllOwner ( 625 operator, 626 arrayAsList 627 ); 628 } 629 630 public void thereExistsOwner ( 631 short operator, 632 String [] filterValues 633 ) { 634 java.util.List arrayAsList = new java.util.ArrayList (); 635 for(int i = 0; i < filterValues.length; i++) { 636 arrayAsList.add( 637 filterValues[i] 638 ); 639 } 640 thereExistsOwner ( 641 operator, 642 arrayAsList 643 ); 644 } 645 646 public void orderByOwner ( 647 short order 648 ) { 649 refAddValue( 650 "org:opencrx:kernel:base:SecureObject:owner", 651 order 652 ); 653 } 654 655 public void forAllOwningGroup ( 659 short operator, 660 org.opencrx.security.realm1.cci.PrincipalGroup[] filterValues 661 ) { 662 java.util.List arrayAsList = new java.util.ArrayList (); 663 for(int i = 0; i < filterValues.length; i++) { 664 arrayAsList.add( 665 filterValues[i] 666 ); 667 } 668 forAllOwningGroup ( 669 operator, 670 arrayAsList 671 ); 672 } 673 674 public void thereExistsOwningGroup ( 675 short operator, 676 org.opencrx.security.realm1.cci.PrincipalGroup[] filterValues 677 ) { 678 java.util.List arrayAsList = new java.util.ArrayList (); 679 for(int i = 0; i < filterValues.length; i++) { 680 arrayAsList.add( 681 filterValues[i] 682 ); 683 } 684 thereExistsOwningGroup ( 685 operator, 686 arrayAsList 687 ); 688 } 689 690 public void forAllOwningGroup ( 691 short operator, 692 java.util.Collection values 693 ) { 694 refAddValue( 695 "org:opencrx:kernel:base:SecureObject:owningGroup", 696 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 697 operator, 698 values 699 ); 700 } 701 702 public void thereExistsOwningGroup ( 703 short operator, 704 java.util.Collection values 705 ) { 706 refAddValue( 707 "org:opencrx:kernel:base:SecureObject:owningGroup", 708 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 709 operator, 710 values 711 ); 712 } 713 714 public void forAllOwningUser ( 718 short operator, 719 org.opencrx.security.realm1.cci.User[] filterValues 720 ) { 721 java.util.List arrayAsList = new java.util.ArrayList (); 722 for(int i = 0; i < filterValues.length; i++) { 723 arrayAsList.add( 724 filterValues[i] 725 ); 726 } 727 forAllOwningUser ( 728 operator, 729 arrayAsList 730 ); 731 } 732 733 public void thereExistsOwningUser ( 734 short operator, 735 org.opencrx.security.realm1.cci.User[] filterValues 736 ) { 737 java.util.List arrayAsList = new java.util.ArrayList (); 738 for(int i = 0; i < filterValues.length; i++) { 739 arrayAsList.add( 740 filterValues[i] 741 ); 742 } 743 thereExistsOwningUser ( 744 operator, 745 arrayAsList 746 ); 747 } 748 749 public void forAllOwningUser ( 750 short operator, 751 java.util.Collection values 752 ) { 753 refAddValue( 754 "org:opencrx:kernel:base:SecureObject:owningUser", 755 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 756 operator, 757 values 758 ); 759 } 760 761 public void thereExistsOwningUser ( 762 short operator, 763 java.util.Collection values 764 ) { 765 refAddValue( 766 "org:opencrx:kernel:base:SecureObject:owningUser", 767 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 768 operator, 769 values 770 ); 771 } 772 773 public void forAllCreatedAt ( 777 short operator, 778 java.util.Collection values 779 ) { 780 refAddValue( 781 "org:openmdx:base:BasicObject:createdAt", 782 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 783 operator, 784 values 785 ); 786 } 787 788 public void thereExistsCreatedAt ( 789 short operator, 790 java.util.Collection values 791 ) { 792 refAddValue( 793 "org:openmdx:base:BasicObject:createdAt", 794 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 795 operator, 796 values 797 ); 798 } 799 800 public void forAllCreatedAt ( 801 short operator, 802 java.util.Date [] filterValues 803 ) { 804 java.util.List arrayAsList = new java.util.ArrayList (); 805 for(int i = 0; i < filterValues.length; i++) { 806 arrayAsList.add( 807 filterValues[i] 808 ); 809 } 810 forAllCreatedAt ( 811 operator, 812 arrayAsList 813 ); 814 } 815 816 public void thereExistsCreatedAt ( 817 short operator, 818 java.util.Date [] filterValues 819 ) { 820 java.util.List arrayAsList = new java.util.ArrayList (); 821 for(int i = 0; i < filterValues.length; i++) { 822 arrayAsList.add( 823 filterValues[i] 824 ); 825 } 826 thereExistsCreatedAt ( 827 operator, 828 arrayAsList 829 ); 830 } 831 832 public void orderByCreatedAt ( 833 short order 834 ) { 835 refAddValue( 836 "org:openmdx:base:BasicObject:createdAt", 837 order 838 ); 839 } 840 841 public void forAllCreatedBy ( 845 short operator, 846 java.util.Collection values 847 ) { 848 refAddValue( 849 "org:openmdx:base:BasicObject:createdBy", 850 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 851 operator, 852 values 853 ); 854 } 855 856 public void thereExistsCreatedBy ( 857 short operator, 858 java.util.Collection values 859 ) { 860 refAddValue( 861 "org:openmdx:base:BasicObject:createdBy", 862 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 863 operator, 864 values 865 ); 866 } 867 868 public void forAllCreatedBy ( 869 short operator, 870 String [] filterValues 871 ) { 872 java.util.List arrayAsList = new java.util.ArrayList (); 873 for(int i = 0; i < filterValues.length; i++) { 874 arrayAsList.add( 875 filterValues[i] 876 ); 877 } 878 forAllCreatedBy ( 879 operator, 880 arrayAsList 881 ); 882 } 883 884 public void thereExistsCreatedBy ( 885 short operator, 886 String [] filterValues 887 ) { 888 java.util.List arrayAsList = new java.util.ArrayList (); 889 for(int i = 0; i < filterValues.length; i++) { 890 arrayAsList.add( 891 filterValues[i] 892 ); 893 } 894 thereExistsCreatedBy ( 895 operator, 896 arrayAsList 897 ); 898 } 899 900 public void orderByCreatedBy ( 901 short order 902 ) { 903 refAddValue( 904 "org:openmdx:base:BasicObject:createdBy", 905 order 906 ); 907 } 908 909 public void forAllModifiedAt ( 913 short operator, 914 java.util.Collection values 915 ) { 916 refAddValue( 917 "org:openmdx:base:BasicObject:modifiedAt", 918 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 919 operator, 920 values 921 ); 922 } 923 924 public void thereExistsModifiedAt ( 925 short operator, 926 java.util.Collection values 927 ) { 928 refAddValue( 929 "org:openmdx:base:BasicObject:modifiedAt", 930 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 931 operator, 932 values 933 ); 934 } 935 936 public void forAllModifiedAt ( 937 short operator, 938 java.util.Date [] filterValues 939 ) { 940 java.util.List arrayAsList = new java.util.ArrayList (); 941 for(int i = 0; i < filterValues.length; i++) { 942 arrayAsList.add( 943 filterValues[i] 944 ); 945 } 946 forAllModifiedAt ( 947 operator, 948 arrayAsList 949 ); 950 } 951 952 public void thereExistsModifiedAt ( 953 short operator, 954 java.util.Date [] filterValues 955 ) { 956 java.util.List arrayAsList = new java.util.ArrayList (); 957 for(int i = 0; i < filterValues.length; i++) { 958 arrayAsList.add( 959 filterValues[i] 960 ); 961 } 962 thereExistsModifiedAt ( 963 operator, 964 arrayAsList 965 ); 966 } 967 968 public void orderByModifiedAt ( 969 short order 970 ) { 971 refAddValue( 972 "org:openmdx:base:BasicObject:modifiedAt", 973 order 974 ); 975 } 976 977 public void forAllModifiedBy ( 981 short operator, 982 java.util.Collection values 983 ) { 984 refAddValue( 985 "org:openmdx:base:BasicObject:modifiedBy", 986 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 987 operator, 988 values 989 ); 990 } 991 992 public void thereExistsModifiedBy ( 993 short operator, 994 java.util.Collection values 995 ) { 996 refAddValue( 997 "org:openmdx:base:BasicObject:modifiedBy", 998 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 999 operator, 1000 values 1001 ); 1002 } 1003 1004 public void forAllModifiedBy ( 1005 short operator, 1006 String [] filterValues 1007 ) { 1008 java.util.List arrayAsList = new java.util.ArrayList (); 1009 for(int i = 0; i < filterValues.length; i++) { 1010 arrayAsList.add( 1011 filterValues[i] 1012 ); 1013 } 1014 forAllModifiedBy ( 1015 operator, 1016 arrayAsList 1017 ); 1018 } 1019 1020 public void thereExistsModifiedBy ( 1021 short operator, 1022 String [] filterValues 1023 ) { 1024 java.util.List arrayAsList = new java.util.ArrayList (); 1025 for(int i = 0; i < filterValues.length; i++) { 1026 arrayAsList.add( 1027 filterValues[i] 1028 ); 1029 } 1030 thereExistsModifiedBy ( 1031 operator, 1032 arrayAsList 1033 ); 1034 } 1035 1036 public void orderByModifiedBy ( 1037 short order 1038 ) { 1039 refAddValue( 1040 "org:openmdx:base:BasicObject:modifiedBy", 1041 order 1042 ); 1043 } 1044 1045 public void forAllContext ( 1049 short operator, 1050 org.openmdx.base.cci.Context[] filterValues 1051 ) { 1052 java.util.List arrayAsList = new java.util.ArrayList (); 1053 for(int i = 0; i < filterValues.length; i++) { 1054 arrayAsList.add( 1055 filterValues[i] 1056 ); 1057 } 1058 forAllContext ( 1059 operator, 1060 arrayAsList 1061 ); 1062 } 1063 1064 public void thereExistsContext ( 1065 short operator, 1066 org.openmdx.base.cci.Context[] filterValues 1067 ) { 1068 java.util.List arrayAsList = new java.util.ArrayList (); 1069 for(int i = 0; i < filterValues.length; i++) { 1070 arrayAsList.add( 1071 filterValues[i] 1072 ); 1073 } 1074 thereExistsContext ( 1075 operator, 1076 arrayAsList 1077 ); 1078 } 1079 1080 public void forAllContext ( 1081 short operator, 1082 java.util.Collection values 1083 ) { 1084 refAddValue( 1085 "org:openmdx:base:ContextCapable:context", 1086 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 1087 operator, 1088 values 1089 ); 1090 } 1091 1092 public void thereExistsContext ( 1093 short operator, 1094 java.util.Collection values 1095 ) { 1096 refAddValue( 1097 "org:openmdx:base:ContextCapable:context", 1098 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 1099 operator, 1100 values 1101 ); 1102 } 1103 1104 public void forAllIdentity ( 1108 short operator, 1109 java.util.Collection values 1110 ) { 1111 refAddValue( 1112 "org:openmdx:base:ExtentCapable:identity", 1113 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 1114 operator, 1115 values 1116 ); 1117 } 1118 1119 public void thereExistsIdentity ( 1120 short operator, 1121 java.util.Collection values 1122 ) { 1123 refAddValue( 1124 "org:openmdx:base:ExtentCapable:identity", 1125 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 1126 operator, 1127 values 1128 ); 1129 } 1130 1131 public void forAllIdentity ( 1132 short operator, 1133 String [] filterValues 1134 ) { 1135 java.util.List arrayAsList = new java.util.ArrayList (); 1136 for(int i = 0; i < filterValues.length; i++) { 1137 arrayAsList.add( 1138 filterValues[i] 1139 ); 1140 } 1141 forAllIdentity ( 1142 operator, 1143 arrayAsList 1144 ); 1145 } 1146 1147 public void thereExistsIdentity ( 1148 short operator, 1149 String [] filterValues 1150 ) { 1151 java.util.List arrayAsList = new java.util.ArrayList (); 1152 for(int i = 0; i < filterValues.length; i++) { 1153 arrayAsList.add( 1154 filterValues[i] 1155 ); 1156 } 1157 thereExistsIdentity ( 1158 operator, 1159 arrayAsList 1160 ); 1161 } 1162 1163 public void orderByIdentity ( 1164 short order 1165 ) { 1166 refAddValue( 1167 "org:openmdx:base:ExtentCapable:identity", 1168 order 1169 ); 1170 } 1171 1172} 1176 | Popular Tags |