]> source.dussan.org Git - archiva.git/blob
29538025290e445a3f0cea16647a8786954fb25d
[archiva.git] /
1 package org.apache.archiva.admin.model.beans;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import javax.xml.bind.annotation.XmlRootElement;
22 import java.io.Serializable;
23 import java.util.ArrayList;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27
28 /**
29  * @author Olivier Lamy
30  * @since 1.4-M4
31  */
32 @XmlRootElement(name = "redbackRuntimeConfiguration")
33 public class RedbackRuntimeConfiguration
34     implements Serializable
35 {
36
37     /**
38      * Field userManagerImpls.
39      */
40     private List<String> userManagerImpls = new ArrayList<String>();
41
42     private LdapConfiguration ldapConfiguration;
43
44     /**
45      * flag to know if redback configuration has been checked/migrated.
46      */
47     private boolean migratedFromRedbackConfiguration = false;
48
49     private Map<String, String> configurationProperties;
50
51     /**
52      * field to ease json mapping wrapper on <code>configurationProperties</code> field
53      */
54     private List<PropertyEntry> configurationPropertiesEntries;
55
56     /**
57      * flag to know if redback will use a cache to prevent
58      * searching users already found.
59      */
60     private boolean useUsersCache = false;
61
62     private CacheConfiguration usersCacheConfiguration;
63
64     public RedbackRuntimeConfiguration()
65     {
66         // no op
67     }
68
69     public List<String> getUserManagerImpls()
70     {
71         return userManagerImpls;
72     }
73
74     public void setUserManagerImpls( List<String> userManagerImpls )
75     {
76         this.userManagerImpls = userManagerImpls;
77     }
78
79     public LdapConfiguration getLdapConfiguration()
80     {
81         return ldapConfiguration;
82     }
83
84     public void setLdapConfiguration( LdapConfiguration ldapConfiguration )
85     {
86         this.ldapConfiguration = ldapConfiguration;
87     }
88
89     public boolean isMigratedFromRedbackConfiguration()
90     {
91         return migratedFromRedbackConfiguration;
92     }
93
94     public void setMigratedFromRedbackConfiguration( boolean migratedFromRedbackConfiguration )
95     {
96         this.migratedFromRedbackConfiguration = migratedFromRedbackConfiguration;
97     }
98
99     public Map<String, String> getConfigurationProperties()
100     {
101         if ( this.configurationProperties == null )
102         {
103             this.configurationProperties = new HashMap<String, String>();
104         }
105         return configurationProperties;
106     }
107
108     public void setConfigurationProperties( Map<String, String> configurationProperties )
109     {
110         this.configurationProperties = configurationProperties;
111     }
112
113     public List<PropertyEntry> getConfigurationPropertiesEntries()
114     {
115         configurationPropertiesEntries = new ArrayList<PropertyEntry>( getConfigurationProperties().size() );
116         for ( Map.Entry<String, String> entry : getConfigurationProperties().entrySet() )
117         {
118             configurationPropertiesEntries.add( new PropertyEntry( entry.getKey(), entry.getValue() ) );
119         }
120         return configurationPropertiesEntries;
121     }
122
123     public void setConfigurationPropertiesEntries( List<PropertyEntry> configurationPropertiesEntries )
124     {
125         this.configurationPropertiesEntries = configurationPropertiesEntries;
126         if ( configurationPropertiesEntries != null )
127         {
128             this.configurationProperties = new HashMap<String, String>( configurationPropertiesEntries.size() );
129             for ( PropertyEntry propertyEntry : configurationPropertiesEntries )
130             {
131                 this.configurationProperties.put( propertyEntry.getKey(), propertyEntry.getValue() );
132             }
133         }
134     }
135
136     public boolean isUseUsersCache()
137     {
138         return useUsersCache;
139     }
140
141     public void setUseUsersCache( boolean useUsersCache )
142     {
143         this.useUsersCache = useUsersCache;
144     }
145
146     public CacheConfiguration getUsersCacheConfiguration()
147     {
148         return usersCacheConfiguration;
149     }
150
151     public void setUsersCacheConfiguration( CacheConfiguration usersCacheConfiguration )
152     {
153         this.usersCacheConfiguration = usersCacheConfiguration;
154     }
155
156     @Override
157     public String toString()
158     {
159         final StringBuilder sb = new StringBuilder();
160         sb.append( "RedbackRuntimeConfiguration" );
161         sb.append( "{userManagerImpls=" ).append( userManagerImpls );
162         sb.append( ", ldapConfiguration=" ).append( ldapConfiguration );
163         sb.append( ", migratedFromRedbackConfiguration=" ).append( migratedFromRedbackConfiguration );
164         sb.append( ", configurationProperties=" ).append( configurationProperties );
165         sb.append( ", configurationPropertiesEntries=" ).append( configurationPropertiesEntries );
166         sb.append( ", useUsersCache=" ).append( useUsersCache );
167         sb.append( ", usersCacheConfiguration=" ).append( usersCacheConfiguration );
168         sb.append( '}' );
169         return sb.toString();
170     }
171 }