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:
14: package com.sun.portal.wsrp.common;
15:
16: public class OASISUsernameTokenProfile {
17:
18: public String username = null;
19: public String password = null;
20: public String version = "1.0";
21:
22: public OASISUsernameTokenProfile() {
23:
24: }
25:
26: public OASISUsernameTokenProfile(String username, String password) {
27: this .username = username;
28: this .password = password;
29: }
30:
31: public String getUsername() {
32: return username;
33: }
34:
35: public String getPassword() {
36: return password;
37: }
38:
39: public String getVersion() {
40: return version;
41: }
42:
43: public void setUsername(String username) {
44: this .username = username;
45: }
46:
47: public void setPassword(String password) {
48: this.password = password;
49: }
50:
51: }
|