1 package org.opencrx.kernel.home1.cci; 14 15 public interface EMailAccount 16 extends 17 org.opencrx.kernel.base.cci.SecureObject, 18 org.openmdx.base.cci.BasicObject { 19 26 public String getEMailAddress( 27 ); 28 29 33 34 39 public void setEMailAddress( 40 String newValue 41 ); 42 43 50 public Boolean isIncomingLeaveCopyOnServer( 51 ); 52 53 57 58 63 public void setIncomingLeaveCopyOnServer( 64 Boolean newValue 65 ); 66 67 74 public String getIncomingMailServer( 75 ); 76 77 81 82 87 public void setIncomingMailServer( 88 String newValue 89 ); 90 91 98 public Short getIncomingMailServerPort( 99 ); 100 101 105 106 111 public void setIncomingMailServerPort( 112 Short newValue 113 ); 114 115 122 public String getIncomingPassword( 123 ); 124 125 129 130 135 public void setIncomingPassword( 136 String newValue 137 ); 138 139 146 public Boolean isIncomingRequiresSsl( 147 ); 148 149 153 154 159 public void setIncomingRequiresSsl( 160 Boolean newValue 161 ); 162 163 170 public Boolean isIncomingSpa( 171 ); 172 173 177 178 183 public void setIncomingSpa( 184 Boolean newValue 185 ); 186 187 194 public String getIncomingUsername( 195 ); 196 197 201 202 207 public void setIncomingUsername( 208 String newValue 209 ); 210 211 218 public Boolean isDefault( 219 ); 220 221 225 226 231 public void setDefault_( 232 Boolean newValue 233 ); 234 235 242 public Boolean isLogonToIncoming( 243 ); 244 245 249 250 255 public void setLogonToIncoming( 256 Boolean newValue 257 ); 258 259 266 public String getOutgoingMailServer( 267 ); 268 269 273 274 279 public void setOutgoingMailServer( 280 String newValue 281 ); 282 283 290 public Short getOutgoingMailServerPort( 291 ); 292 293 297 298 303 public void setOutgoingMailServerPort( 304 Short newValue 305 ); 306 307 314 public String getOutgoingPassword( 315 ); 316 317 321 322 327 public void setOutgoingPassword( 328 String newValue 329 ); 330 331 338 public Boolean isOutgoingRequiresAuth( 339 ); 340 341 345 346 351 public void setOutgoingRequiresAuth( 352 Boolean newValue 353 ); 354 355 362 public Boolean isOutgoingRequiresSsl( 363 ); 364 365 369 370 375 public void setOutgoingRequiresSsl( 376 Boolean newValue 377 ); 378 379 386 public Boolean isOutgoingSpa( 387 ); 388 389 393 394 399 public void setOutgoingSpa( 400 Boolean newValue 401 ); 402 403 410 public String getOutgoingUsername( 411 ); 412 413 417 418 423 public void setOutgoingUsername( 424 String newValue 425 ); 426 427 434 public String getReplyEMailAddress( 435 ); 436 437 441 442 447 public void setReplyEMailAddress( 448 String newValue 449 ); 450 451 458 public Boolean isSameAuthSettingsAsIncoming( 459 ); 460 461 465 466 471 public void setSameAuthSettingsAsIncoming( 472 Boolean newValue 473 ); 474 475 } 479 | Popular Tags |