]> source.dussan.org Git - archiva.git/blob
3fcbb1f1c9ffd78ad0813f7b24973e2198122b5b
[archiva.git] /
1 package org.apache.archiva.redback.authentication;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.archiva.redback.authentication.AuthenticationDataSource;
23 import org.springframework.context.annotation.Scope;
24 import org.springframework.stereotype.Service;
25
26
27 /**
28  * TokenBasedAuthenticationDataSource
29  *
30  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
31  *
32  */
33 @Service( "authenticationDataSource#token" )
34 @Scope( "prototype" )
35 public class TokenBasedAuthenticationDataSource
36     implements AuthenticationDataSource
37 {
38     private String token;
39
40     private String principal;
41
42     private boolean enforcePasswordChange = true;
43
44     public TokenBasedAuthenticationDataSource( String principal )
45     {
46         this.principal = principal;
47     }
48
49     public TokenBasedAuthenticationDataSource()
50     {
51     }
52
53     public String getPrincipal()
54     {
55         return principal;
56     }
57
58     public String getToken()
59     {
60         return token;
61     }
62
63     public void setPrincipal( String principal )
64     {
65         this.principal = principal;
66     }
67
68     public void setToken( String token )
69     {
70         this.token = token;
71     }
72
73     public String toString()
74     {
75         StringBuilder sb = new StringBuilder();
76         sb.append( "TokenBasedAuthenticationDataSource[" );
77         sb.append( "principal=" ).append( principal );
78         sb.append( ",token=" ).append( token );
79         sb.append( ']' );
80         return sb.toString();
81     }
82
83     public void setEnforcePasswordChange( boolean enforcePasswordChange )
84     {
85         this.enforcePasswordChange = enforcePasswordChange;
86     }
87
88     public boolean isEnforcePasswordChange()
89     {
90         return enforcePasswordChange;
91     }
92 }