View Javadoc
1   /*
2    * Copyright (C) 2007-2012 Argeo GmbH
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *         http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.argeo.slc.core.deploy;
17  
18  import java.util.ArrayList;
19  import java.util.HashMap;
20  import java.util.List;
21  import java.util.Map;
22  
23  import org.springframework.core.io.Resource;
24  
25  public class MultiResourceSet implements ResourceSet {
26  	private List<ResourceSet> resourceSets = new ArrayList<ResourceSet>();
27  
28  	public Map<String, Resource> listResources() {
29  		Map<String, Resource> res = new HashMap<String, Resource>();
30  		for (ResourceSet resourceSet : resourceSets) {
31  			res.putAll(resourceSet.listResources());
32  		}
33  		return res;
34  	}
35  
36  	/** Last listed override previous for the same relative paths. */
37  	public void setResourceSets(List<ResourceSet> resourceSets) {
38  		this.resourceSets = resourceSets;
39  	}
40  
41  	public List<ResourceSet> getResourceSets() {
42  		return resourceSets;
43  	}
44  
45  }