]> source.dussan.org Git - archiva.git/blob
db62852079356b28d58b468f800513aad1a79ed7
[archiva.git] /
1 package org.apache.archiva.metadata.repository.storage.maven2.conf;
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.configuration.ArchivaConfiguration;
23 import org.apache.archiva.configuration.Configuration;
24 import org.apache.archiva.configuration.ConfigurationListener;
25 import org.apache.archiva.redback.components.registry.Registry;
26 import org.apache.archiva.redback.components.registry.RegistryException;
27 import org.apache.archiva.redback.components.registry.RegistryListener;
28 import org.easymock.MockControl;
29 import org.springframework.stereotype.Service;
30
31 import java.util.HashSet;
32 import java.util.Set;
33
34 /**
35  * MockConfiguration 
36  *
37  *
38  */
39 @Service("archivaConfiguration#mock")
40 public class MockConfiguration
41     implements ArchivaConfiguration
42 {
43
44     private Configuration configuration = new Configuration();
45
46     private Set<RegistryListener> registryListeners = new HashSet<RegistryListener>();
47     private Set<ConfigurationListener> configListeners = new HashSet<ConfigurationListener>();
48
49     private MockControl registryControl;
50
51     private Registry registryMock;
52
53     public MockConfiguration()
54     {
55         registryControl = MockControl.createNiceControl( Registry.class );
56         registryMock = (Registry) registryControl.getMock();
57     }
58
59     public void addChangeListener( RegistryListener listener )
60     {
61         registryListeners.add( listener );
62     }
63
64     public Configuration getConfiguration()
65     {
66         return configuration;
67     }
68
69     public void save( Configuration configuration )
70         throws RegistryException
71     {
72         /* do nothing */
73     }
74
75     public void triggerChange( String name, String value )
76     {
77         for(RegistryListener listener: registryListeners)
78         {
79             try
80             {
81                 listener.afterConfigurationChange( registryMock, name, value );
82             }
83             catch ( Exception e )
84             {
85                 e.printStackTrace();
86             }
87         }
88     }
89
90     public void addListener( ConfigurationListener listener )
91     {
92         configListeners.add(listener);
93     }
94
95     public void removeListener( ConfigurationListener listener )
96     {
97         configListeners.remove( listener );
98     }
99     
100     public boolean isDefaulted()
101     {
102         return false;
103     }
104
105     public void reload()
106     {
107         // no op
108     }
109 }