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: */
13: package com.sun.portal.wsrp.wssso.common;
14:
15: public class WSSSOConfiguration {
16:
17: private String webServiceURL = null;
18: private String userName = null;
19: private String password = null;
20: private String endPointURLs = null;
21: private String identityType = null;
22: private String wsName = null;
23: private String wsDescription = null;
24:
25: public WSSSOConfiguration() {
26: }
27:
28: public String getWebServiceURL() {
29: return webServiceURL;
30: }
31:
32: public void setWebServiceURL(String webServiceURL) {
33: this .webServiceURL = webServiceURL;
34: }
35:
36: public String getUserName() {
37: return userName;
38: }
39:
40: public void setUserName(String userName) {
41: this .userName = userName;
42: }
43:
44: public String getPassword() {
45: return password;
46: }
47:
48: public void setPassword(String password) {
49: this .password = password;
50: }
51:
52: public String getEndPointURLs() {
53: return endPointURLs;
54: }
55:
56: public void setEndPointURLs(String endPointURLs) {
57: this .endPointURLs = endPointURLs;
58: }
59:
60: public String getIdentityType() {
61: return identityType;
62: }
63:
64: public void setIdentityType(String identityType) {
65: this .identityType = identityType;
66: }
67:
68: public String getWSName() {
69: return wsName;
70: }
71:
72: public void setWSName(String wsName) {
73: this .wsName = wsName;
74: }
75:
76: public String getWSDescription() {
77: return wsDescription;
78: }
79:
80: public void setWSDescription(String wsDescription) {
81: this.wsDescription = wsDescription;
82: }
83:
84: }
|