01: /*
02: * $Id: IssuedTokensImpl.java,v 1.1 2007/08/23 12:40:55 shyam_rao Exp $
03: */
04:
05: /*
06: * The contents of this file are subject to the terms
07: * of the Common Development and Distribution License
08: * (the License). You may not use this file except in
09: * compliance with the License.
10: *
11: * You can obtain a copy of the license at
12: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
13: * See the License for the specific language governing
14: * permissions and limitations under the License.
15: *
16: * When distributing Covered Code, include this CDDL
17: * Header Notice in each file and include the License file
18: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
19: * If applicable, add the following below the CDDL Header,
20: * with the fields enclosed by brackets [] replaced by
21: * you own identifying information:
22: * "Portions Copyrighted [year] [name of copyright owner]"
23: *
24: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
25: */
26:
27: package com.sun.xml.ws.security.trust.impl.wssx.elements;
28:
29: import com.sun.xml.ws.security.trust.elements.IssuedTokens;
30: import com.sun.xml.ws.security.trust.elements.RequestSecurityTokenResponseCollection;
31: import java.util.List;
32:
33: /**
34: * @author Manveen Kaur.
35: */
36: public class IssuedTokensImpl implements IssuedTokens {
37:
38: RequestSecurityTokenResponseCollection collection = null;
39:
40: public IssuedTokensImpl() {
41: // empty c'tor
42: }
43:
44: public IssuedTokensImpl(
45: RequestSecurityTokenResponseCollection rcollection) {
46: setIssuedTokens(rcollection);
47: }
48:
49: public RequestSecurityTokenResponseCollection getIssuedTokens() {
50: return collection;
51: }
52:
53: public void setIssuedTokens(
54: RequestSecurityTokenResponseCollection rcollection) {
55: collection = rcollection;
56: }
57:
58: public List<Object> getAny() {
59: return null;
60: }
61: }
|