1 package org.apache.archiva.repository.base;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import org.apache.archiva.common.filelock.DefaultFileLockManager;
23 import org.apache.archiva.common.filelock.FileLockManager;
24 import org.apache.archiva.repository.ReleaseScheme;
25 import org.apache.archiva.repository.RepositoryCapabilities;
26 import org.apache.archiva.repository.RepositoryType;
27 import org.apache.archiva.repository.StandardCapabilities;
28 import org.apache.archiva.repository.storage.fs.FilesystemStorage;
29 import org.apache.archiva.repository.storage.RepositoryStorage;
30 import org.apache.archiva.repository.features.IndexCreationFeature;
31 import org.apache.archiva.repository.features.RemoteIndexFeature;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
35 import java.io.IOException;
36 import java.nio.file.Path;
37 import java.util.Locale;
41 * Just a helper class, mainly used for unit tests.
45 public class BasicRemoteRepository extends AbstractRemoteRepository
48 Logger log = LoggerFactory.getLogger(BasicRemoteRepository.class);
50 RemoteIndexFeature remoteIndexFeature = new RemoteIndexFeature();
51 IndexCreationFeature indexCreationFeature = new IndexCreationFeature(true);
54 static final StandardCapabilities CAPABILITIES = new StandardCapabilities( new ReleaseScheme[] {
55 ReleaseScheme.RELEASE, ReleaseScheme.SNAPSHOT
56 }, new String[] {"default"}, new String[0], new String[] {
57 RemoteIndexFeature.class.toString(),
58 IndexCreationFeature.class.toString()
59 }, true, true, true, true, true );
61 public BasicRemoteRepository( String id, String name, RepositoryStorage storage)
63 super( RepositoryType.MAVEN, id, name, storage);
67 public BasicRemoteRepository( Locale primaryLocale, RepositoryType type, String id, String name, RepositoryStorage storage )
69 super( primaryLocale, type, id, name, storage );
73 private void initFeatures() {
74 addFeature( remoteIndexFeature );
75 addFeature( indexCreationFeature );
79 public boolean hasIndex( )
85 public RepositoryCapabilities getCapabilities( )
91 public static BasicRemoteRepository newFilesystemInstance(String id, String name, Path basePath) throws IOException {
92 FileLockManager lockManager = new DefaultFileLockManager();
93 FilesystemStorage storage = new FilesystemStorage(basePath.resolve(id), lockManager);
94 return new BasicRemoteRepository(id, name, storage);