]> source.dussan.org Git - archiva.git/blob
4c21083e9c852ff18d6c50f110ad61554a00979f
[archiva.git] /
1 package org.apache.archiva.repository.base;
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  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied.  See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19
20 import org.apache.archiva.components.registry.RegistryException;
21 import org.apache.archiva.configuration.ArchivaConfiguration;
22 import org.apache.archiva.configuration.Configuration;
23 import org.apache.archiva.configuration.ConfigurationListener;
24 import org.apache.archiva.configuration.IndeterminateConfigurationException;
25 import org.springframework.stereotype.Service;
26
27 import java.util.concurrent.locks.ReentrantReadWriteLock;
28
29 /**
30  * This is just a simple wrapper to access the archiva configuration used by the registry and associated classes
31  *
32  * @author Martin Stockhammer <martin_s@apache.org>
33  */
34 @Service("configurationHandler#default")
35 public class ConfigurationHandler
36 {
37     public static final String REGISTRY_EVENT_TAG = "repositoryRegistry";
38
39     private ArchivaConfiguration archivaConfiguration;
40
41     final ReentrantReadWriteLock lock = new ReentrantReadWriteLock( );
42
43     public ConfigurationHandler( ArchivaConfiguration archivaConfiguration ) {
44         this.archivaConfiguration = archivaConfiguration;
45     }
46
47     public void addListener( ConfigurationListener listener ) {
48         this.archivaConfiguration.addListener( listener );
49     }
50
51     public ArchivaConfiguration getArchivaConfiguration( )
52     {
53         return archivaConfiguration;
54     }
55
56     public void setArchivaConfiguration( ArchivaConfiguration archivaConfiguration )
57     {
58         this.archivaConfiguration = archivaConfiguration;
59     }
60
61     public Configuration getBaseConfiguration() {
62         return archivaConfiguration.getConfiguration( );
63     }
64
65     public void save(Configuration configuration, String eventTag) throws IndeterminateConfigurationException, RegistryException
66     {
67         archivaConfiguration.save( configuration, eventTag);
68     }
69
70     public void save(Configuration configuration) throws IndeterminateConfigurationException, RegistryException
71     {
72         archivaConfiguration.save( configuration, "" );
73     }
74
75     ReentrantReadWriteLock getLock() {
76         return lock;
77     }
78 }