115249aa87df06bf17a710473d94d83b68762041
[java-idp.git] / src / edu / internet2 / middleware / shibboleth / common / ShibPOSTProfileFactory.java
1 /* 
2  * The Shibboleth License, Version 1. 
3  * Copyright (c) 2002 
4  * University Corporation for Advanced Internet Development, Inc. 
5  * All rights reserved
6  * 
7  * 
8  * Redistribution and use in source and binary forms, with or without 
9  * modification, are permitted provided that the following conditions are met:
10  * 
11  * Redistributions of source code must retain the above copyright notice, this 
12  * list of conditions and the following disclaimer.
13  * 
14  * Redistributions in binary form must reproduce the above copyright notice, 
15  * this list of conditions and the following disclaimer in the documentation 
16  * and/or other materials provided with the distribution, if any, must include 
17  * the following acknowledgment: "This product includes software developed by 
18  * the University Corporation for Advanced Internet Development 
19  * <http://www.ucaid.edu>Internet2 Project. Alternately, this acknowledegement 
20  * may appear in the software itself, if and wherever such third-party 
21  * acknowledgments normally appear.
22  * 
23  * Neither the name of Shibboleth nor the names of its contributors, nor 
24  * Internet2, nor the University Corporation for Advanced Internet Development, 
25  * Inc., nor UCAID may be used to endorse or promote products derived from this 
26  * software without specific prior written permission. For written permission, 
27  * please contact shibboleth@shibboleth.org
28  * 
29  * Products derived from this software may not be called Shibboleth, Internet2, 
30  * UCAID, or the University Corporation for Advanced Internet Development, nor 
31  * may Shibboleth appear in their name, without prior written permission of the 
32  * University Corporation for Advanced Internet Development.
33  * 
34  * 
35  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
36  * AND WITH ALL FAULTS. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
37  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 
38  * PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED AND THE ENTIRE RISK 
39  * OF SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS WITH LICENSEE. 
40  * IN NO EVENT SHALL THE COPYRIGHT OWNER, CONTRIBUTORS OR THE UNIVERSITY 
41  * CORPORATION FOR ADVANCED INTERNET DEVELOPMENT, INC. BE LIABLE FOR ANY DIRECT, 
42  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
43  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
44  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 
45  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
46  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
47  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48  */
49
50 package edu.internet2.middleware.shibboleth.common;
51
52 import java.util.Collection;
53
54 import org.opensaml.SAMLException;
55 import org.opensaml.SAMLPOSTProfile;
56
57
58 /**
59  *  Used by Shibboleth HS/SHIRE to locate a Shibboleth POST profile
60  *  implementation
61  *
62  * @author     Scott Cantor
63  * @created    April 10, 2002
64  */
65 public class ShibPOSTProfileFactory
66 {
67     /**
68      *  Gets a compatible SHIRE-side profile implementation for the specified
69      *  policies
70      *
71      * @param  policies           Set of policy URIs that the implementation
72      *      must support
73      * @param  receiver           URL of SHIRE
74      * @param  ttlSeconds         Length of time in seconds allowed to elapse
75      *      from issuance of SAML response
76      * @return                    A compatible profile implementation or null if
77      *      one cannot be found
78      * @exception  SAMLException  Raised if a profile implementation cannot be
79      *      constructed from the supplied information
80      */
81     public static ShibPOSTProfile getInstance(Collection policies, String receiver, int ttlSeconds)
82         throws SAMLException
83     {
84         // Current version only knows about Club Shib...
85         if (policies == null || !policies.contains(Constants.POLICY_CLUBSHIB))
86             return null;
87
88         if (receiver == null || ttlSeconds <= 0)
89             return null;
90
91         return new ClubShibPOSTProfile(policies, receiver, ttlSeconds);
92     }
93
94     /**
95      *  Gets a compatible HS-side profile implementation for the specified
96      *  policies
97      *
98      * @param  policies           Set of policy URIs that the implementation
99      *      must support
100      * @param  issuer             "Official" name of issuing origin site
101      * @return                    A compatible profile implementation or null if
102      *      one cannot be found
103      * @exception  SAMLException  Raised if a profile implementation cannot be
104      *      constructed from the supplied information
105      */
106     public static ShibPOSTProfile getInstance(Collection policies, String issuer)
107         throws SAMLException
108     {
109         // Current version only knows about Club Shib...
110         if (policies == null || !policies.contains(Constants.POLICY_CLUBSHIB))
111             return null;
112
113         if (issuer == null || issuer.length() == 0)
114             return null;
115
116         return new ClubShibPOSTProfile(policies, issuer);
117     }
118 }
119