- package net.meybo.mail;
- public class OtherMailServer extends MailServer {
- private String smtp;
- private String pop3;
- public String getPop3() {
- return pop3;
- }
- public void setPop3(String pop3) {
- this.pop3 = pop3;
- }
- public String getSmtp() {
- return smtp;
- }
- public void setSmtp(String smtp) {
- this.smtp = smtp;
- }
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- }
- }
English
