01: /**
02: * Copyright 2005 Sun Microsystems, Inc. All
03: * rights reserved. Use of this product is subject
04: * to license terms. Federal Acquisitions:
05: * Commercial Software -- Government Users
06: * Subject to Standard License Terms and
07: * Conditions.
08: *
09: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
10: * are trademarks or registered trademarks of Sun Microsystems,
11: * Inc. in the United States and other countries.
12: */package com.sun.portal.admin.console.search;
13:
14: public class ServerSiteBean {
15:
16: public String server = null;
17: public String port = null;
18: public String protocol = null;
19: public String status = null;
20: public String realname = null;
21:
22: public ServerSiteBean(String server, String port, String protocol,
23: String status, String realname) {
24: this .server = server;
25: this .port = port;
26: this .protocol = protocol;
27: this .status = status;
28: this .realname = realname;
29: }
30:
31: public String getServer() {
32: return server;
33: }
34:
35: public void setServer(String s) {
36: this .server = s;
37: }
38:
39: public String getPort() {
40: return port;
41: }
42:
43: public void setPort(String s) {
44: this .port = s;
45: }
46:
47: public String getProtocol() {
48: return protocol;
49: }
50:
51: public void setProtocol(String s) {
52: this .protocol = s;
53: }
54:
55: public String getStatus() {
56: return status;
57: }
58:
59: public void setStatus(String s) {
60: this .status = s;
61: }
62:
63: public String getRealname() {
64: return realname;
65: }
66:
67: public void setRealname(String s) {
68: this.realname = s;
69: }
70:
71: }
|