]> source.dussan.org Git - archiva.git/blob
968ce25d6d83f7c9e720e24e7238e051b78094a2
[archiva.git] /
1 package org.apache.maven.repository.configuration;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 /**
20  * A component for loading the configuration into the model.
21  *
22  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
23  * @todo this is something that could possibly be generalised into Modello.
24  */
25 public interface ConfigurationStore
26 {
27     /**
28      * The Plexus role for the component.
29      */
30     String ROLE = ConfigurationStore.class.getName();
31
32     /**
33      * Get the configuration from the store. A cached version may be used.
34      *
35      * @return the configuration
36      * @throws ConfigurationStoreException if there is a problem loading the configuration
37      */
38     Configuration getConfigurationFromStore()
39         throws ConfigurationStoreException;
40
41     /**
42      * Save the configuration to the store.
43      *
44      * @param configuration the configuration to store
45      */
46     void storeConfiguration( Configuration configuration )
47         throws ConfigurationStoreException, InvalidConfigurationException, ConfigurationChangeException;
48
49     /**
50      * Add a configuration change listener.
51      *
52      * @param listener the listener
53      */
54     void addChangeListener( ConfigurationChangeListener listener );
55 }