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: import com.sun.portal.admin.console.common.PSBaseBean;
15:
16: public class SearchServerBean extends PSBaseBean {
17:
18: public String id = "";
19: public String host = "";
20: public String port = "";
21: public String instance = "";
22:
23: public void initialize(String id, String host, String port,
24: String instance) {
25: this .id = id;
26: this .host = host;
27: this .port = port;
28: this .instance = instance;
29: }
30:
31: public String getId() {
32: return id;
33: }
34:
35: public void setId(String id) {
36: this .id = id;
37: }
38:
39: public String getHost() {
40: return host;
41: }
42:
43: public void setHost(String host) {
44: this .host = host;
45: }
46:
47: public String getPort() {
48: return port;
49: }
50:
51: public void setPort(String port) {
52: this .port = port;
53: }
54:
55: public String getInstance() {
56: return instance;
57: }
58:
59: public void setInstance(String instance) {
60: this.instance = instance;
61: }
62:
63: }
|