]> source.dussan.org Git - archiva.git/blob
f230257020ce62fc6e2f3d523cbe3cfc7150086e
[archiva.git] /
1 package org.apache.archiva.configuration;
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.components.registry.RegistryException;
23 import org.apache.archiva.components.registry.RegistryListener;
24
25 import java.nio.file.Path;
26 import java.util.List;
27 import java.util.Locale;
28
29 /**
30  * Configuration holder for the model read from the registry.
31  */
32 public interface ArchivaConfiguration
33 {
34
35
36     String USER_CONFIG_PROPERTY = "archiva.user.configFileName";
37     String USER_CONFIG_ENVVAR = "ARCHIVA_USER_CONFIG_FILE";
38
39     /**
40      * Get the configuration.
41      *
42      * @return the configuration
43      */
44     Configuration getConfiguration();
45
46     /**
47      * Save any updated configuration.
48      *
49      * @param configuration the configuration to save
50      * @throws org.apache.archiva.components.registry.RegistryException
51      *          if there is a problem saving the registry data
52      * @throws IndeterminateConfigurationException
53      *          if the configuration cannot be saved because it was read from two sources
54      */
55     void save( Configuration configuration )
56         throws RegistryException, IndeterminateConfigurationException;
57
58     /**
59      * Save any updated configuration. This method allows to add a tag to the thrown event.
60      * This allows to verify the origin if the caller is the same as the listener.
61      *
62      * @param configuration the configuration to save
63      * @param eventTag the tag to add to the thrown event
64      * @throws org.apache.archiva.components.registry.RegistryException
65      *          if there is a problem saving the registry data
66      * @throws IndeterminateConfigurationException
67      *          if the configuration cannot be saved because it was read from two sources
68      */
69     void save( Configuration configuration, String eventTag )
70         throws RegistryException, IndeterminateConfigurationException;
71
72     /**
73      * Determines if the configuration in use was as a result of a defaulted configuration.
74      *
75      * @return true if the configuration was created from the default-archiva.xml as opposed
76      *         to being loaded from the usual locations of ${user.home}/.m2/archiva.xml or
77      *         ${appserver.base}/conf/archiva.xml
78      */
79     boolean isDefaulted();
80
81     /**
82      * Add a configuration listener to notify of changes to the configuration.
83      *
84      * @param listener the listener
85      */
86     void addListener( ConfigurationListener listener );
87
88     /**
89      * Remove a configuration listener to stop notifications of changes to the configuration.
90      *
91      * @param listener the listener
92      */
93     void removeListener( ConfigurationListener listener );
94
95     /**
96      * Add a registry listener to notify of events in spring-registry.
97      *
98      * @param listener the listener
99      *                 TODO: Remove in future.
100      */
101     void addChangeListener( RegistryListener listener );
102
103     void removeChangeListener( RegistryListener listener );
104
105     /**
106      * reload configuration from file included registry
107      *
108      * @since 1.4-M1
109      */
110     void reload();
111
112     public Locale getDefaultLocale();
113
114     public List<Locale.LanguageRange> getLanguagePriorities();
115
116     public Path getAppServerBaseDir();
117
118     /**
119      * Returns the base directory for repositories that have a relative location path set.
120      * @return
121      */
122     public Path getRepositoryBaseDir();
123
124     /**
125      * Returns the base directory for remote repositories
126      * @return
127      */
128     public Path getRemoteRepositoryBaseDir();
129
130     /**
131      * Returns the base directory for repository group files.
132      * @return
133      */
134     public Path getRepositoryGroupBaseDir();
135
136     /**
137      * Returns the data directory where repositories and metadata reside
138      * @return
139      */
140     public Path getDataDirectory();
141 }
142