01: /*
02: * The contents of this file are subject to the terms
03: * of the Common Development and Distribution License
04: * (the License). You may not use this file except in
05: * compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
09: * See the License for the specific language governing
10: * permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL
13: * Header Notice in each file and include the License file
14: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
15: * If applicable, add the following below the CDDL Header,
16: * with the fields enclosed by brackets [] replaced by
17: * you own identifying information:
18: * "Portions Copyrighted [year] [name of copyright owner]"
19: *
20: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
21: */
22:
23: package com.sun.xml.ws.security.opt.api.tokens;
24:
25: /**
26: * Representation of UsernameToken SecurityHeaderElement
27: * @author Ashutosh.Shahi@sun.com
28: */
29: public interface UsernameToken {
30:
31: /**
32: *
33: * @return the username value
34: */
35: String getUsernameValue();
36:
37: /**
38: * sets the username value for this token
39: * @param username username value
40: */
41: void setUsernameValue(final String username);
42:
43: /**
44: *
45: * @return the password for this token
46: */
47: String getPasswordValue();
48:
49: /**
50: * sets the password value for this token
51: * @param passwd the password value
52: */
53: void setPasswordValue(final String passwd);
54:
55: }
|