01: /*
02: * ChainBuilder ESB
03: * Visual Enterprise Integration
04: *
05: * Copyright (C) 2006 Bostech Corporation
06: *
07: * This program is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU General Public License as published by
09: * the Free Software Foundation; either version 2 of the License, or
10: * (at your option) any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public License
18: * along with this program; if not, write to the Free Software
19: * Foundation, Inc.,59 Temple Place, Suite 330, Boston, MA 02111-1307
20: * USA
21: *
22: * $Id: EmailConfigurationMBean.java 7039 2007-04-24 08:17:46Z jzhang $
23: *
24: */
25: package com.bostechcorp.cbesb.runtime.component.email;
26:
27: /**
28: *
29: */
30: public interface EmailConfigurationMBean {
31:
32: /**
33: * Get the host.
34: *
35: * @return the host.
36: */
37: public String getHost();
38:
39: /**
40: * Set the host.
41: *
42: * @param host the host to set
43: */
44: public void setHost(String host);
45:
46: /**
47: * Get the port.
48: *
49: * @return the port.
50: */
51: public String getPort();
52:
53: /**
54: * Set the port.
55: *
56: * @param host the port to set
57: */
58: public void setPort(String port);
59:
60: /**
61: * Get the user.
62: *
63: * @return the user.
64: */
65: public String getUser();
66:
67: /**
68: * Set the user.
69: *
70: * @param host the user to set
71: */
72: public void setUser(String user);
73:
74: /**
75: * Get the password.
76: *
77: * @return the password.
78: */
79: public String getPassword();
80:
81: /**
82: * Set the password.
83: *
84: * @param host the password to set
85: */
86: public void setPassword(String password);
87:
88: }
|