01: /*
02: * Copyright 2005 - 2007 The Kuali Foundation.
03: *
04: *
05: * Licensed under the Educational Community License, Version 1.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.opensource.org/licenses/ecl1.php
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.kuali.bus.security.credentials;
18:
19: import java.security.cert.X509Certificate;
20:
21: import org.kuali.rice.security.credentials.Credentials;
22: import org.kuali.rice.security.credentials.CredentialsSource;
23: import org.springframework.util.Assert;
24:
25: /**
26: * Implementation of a CredentialsSource that returns an X509 Certificate.
27: * <p>
28: * Note that this class is for service-to-service authentication, not
29: * user-to-service authentication.
30: *
31: * @author Kuali Rice Team (kuali-rice@googlegroups.com)
32: * @version $Revision: 1.2.24.1 $ $Date: 2007/10/17 20:32:05 $
33: * @since 0.9
34: *
35: * @see X509Certificate
36: */
37: public final class X509CredentialsSource implements CredentialsSource {
38:
39: private final X509Certificate certificate;
40:
41: public X509CredentialsSource(final X509Certificate certificate) {
42: Assert.notNull(certificate, "certificate cannot be null.");
43: this .certificate = certificate;
44: }
45:
46: public Credentials getCredentials(final String serviceEndpoint) {
47: return new X509Credentials(certificate);
48: }
49:
50: public CredentialsType getSupportedCredentialsType() {
51: return CredentialsType.X509;
52: }
53: }
|