1 package org.opencrx.kernel.activity1.cci; 14 15 17 public interface MailingFilter 18 extends 19 org.opencrx.kernel.activity1.cci.ActivityFilter { 20 21 28 public void forAllDocument ( 29 short operator, 30 String [] filterValues 31 ); 32 33 37 public void thereExistsDocument ( 38 short operator, 39 String [] filterValues 40 ); 41 42 46 public void forAllDocument ( 47 short operator, 48 java.util.Collection filterValues 49 ); 50 51 55 public void thereExistsDocument ( 56 short operator, 57 java.util.Collection filterValues 58 ); 59 60 65 public void orderByDocument ( 66 short order 67 ); 68 69 76 public void forAllSender ( 77 short operator, 78 org.opencrx.kernel.account1.cci.PostalAddress[] filterValues 79 ); 80 81 85 public void thereExistsSender ( 86 short operator, 87 org.opencrx.kernel.account1.cci.PostalAddress[] filterValues 88 ); 89 90 94 public void forAllSender ( 95 short operator, 96 java.util.Collection filterValues 97 ); 98 99 103 public void thereExistsSender ( 104 short operator, 105 java.util.Collection filterValues 106 ); 107 108 115 public void forAllTemplate ( 116 short operator, 117 String [] filterValues 118 ); 119 120 124 public void thereExistsTemplate ( 125 short operator, 126 String [] filterValues 127 ); 128 129 133 public void forAllTemplate ( 134 short operator, 135 java.util.Collection filterValues 136 ); 137 138 142 public void thereExistsTemplate ( 143 short operator, 144 java.util.Collection filterValues 145 ); 146 147 152 public void orderByTemplate ( 153 short order 154 ); 155 156 } 160 | Popular Tags |