1 package org.opencrx.kernel.account1.cci; 14 15 17 public interface LegalEntityFilter 18 extends 19 org.opencrx.kernel.account1.cci.AccountFilter { 20 21 28 public void forAllIndustry ( 29 short operator, 30 short[] filterValues 31 ); 32 33 37 public void thereExistsIndustry ( 38 short operator, 39 short[] filterValues 40 ); 41 42 46 public void forAllIndustry ( 47 short operator, 48 java.util.Collection filterValues 49 ); 50 51 55 public void thereExistsIndustry ( 56 short operator, 57 java.util.Collection filterValues 58 ); 59 60 65 public void orderByIndustry ( 66 short order 67 ); 68 69 76 public void forAllName ( 77 short operator, 78 String [] filterValues 79 ); 80 81 85 public void thereExistsName ( 86 short operator, 87 String [] filterValues 88 ); 89 90 94 public void forAllName ( 95 short operator, 96 java.util.Collection filterValues 97 ); 98 99 103 public void thereExistsName ( 104 short operator, 105 java.util.Collection filterValues 106 ); 107 108 113 public void orderByName ( 114 short order 115 ); 116 117 124 public void forAllNumberOfEmployees ( 125 short operator, 126 int[] filterValues 127 ); 128 129 133 public void thereExistsNumberOfEmployees ( 134 short operator, 135 int[] filterValues 136 ); 137 138 142 public void forAllNumberOfEmployees ( 143 short operator, 144 java.util.Collection filterValues 145 ); 146 147 151 public void thereExistsNumberOfEmployees ( 152 short operator, 153 java.util.Collection filterValues 154 ); 155 156 161 public void orderByNumberOfEmployees ( 162 short order 163 ); 164 165 172 public void forAllNumberOfEmployeesCategory ( 173 short operator, 174 short[] filterValues 175 ); 176 177 181 public void thereExistsNumberOfEmployeesCategory ( 182 short operator, 183 short[] filterValues 184 ); 185 186 190 public void forAllNumberOfEmployeesCategory ( 191 short operator, 192 java.util.Collection filterValues 193 ); 194 195 199 public void thereExistsNumberOfEmployeesCategory ( 200 short operator, 201 java.util.Collection filterValues 202 ); 203 204 209 public void orderByNumberOfEmployeesCategory ( 210 short order 211 ); 212 213 220 public void forAllOrganizationalUnit ( 221 short operator, 222 org.opencrx.kernel.account1.cci.OrganizationalUnit[] filterValues 223 ); 224 225 229 public void thereExistsOrganizationalUnit ( 230 short operator, 231 org.opencrx.kernel.account1.cci.OrganizationalUnit[] filterValues 232 ); 233 234 238 public void forAllOrganizationalUnit ( 239 short operator, 240 java.util.Collection filterValues 241 ); 242 243 247 public void thereExistsOrganizationalUnit ( 248 short operator, 249 java.util.Collection filterValues 250 ); 251 252 259 public void forAllStockExchange ( 260 short operator, 261 String [] filterValues 262 ); 263 264 268 public void thereExistsStockExchange ( 269 short operator, 270 String [] filterValues 271 ); 272 273 277 public void forAllStockExchange ( 278 short operator, 279 java.util.Collection filterValues 280 ); 281 282 286 public void thereExistsStockExchange ( 287 short operator, 288 java.util.Collection filterValues 289 ); 290 291 296 public void orderByStockExchange ( 297 short order 298 ); 299 300 307 public void forAllTickerSymbol ( 308 short operator, 309 String [] filterValues 310 ); 311 312 316 public void thereExistsTickerSymbol ( 317 short operator, 318 String [] filterValues 319 ); 320 321 325 public void forAllTickerSymbol ( 326 short operator, 327 java.util.Collection filterValues 328 ); 329 330 334 public void thereExistsTickerSymbol ( 335 short operator, 336 java.util.Collection filterValues 337 ); 338 339 344 public void orderByTickerSymbol ( 345 short order 346 ); 347 348 } 352 | Popular Tags |