]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/maven/proxy/MavenProxyServiceImpl.java
Use Commons SNAPSHOTs
[gpl/argeo-slc.git] / runtime / org.argeo.slc.repo / src / main / java / org / argeo / slc / repo / maven / proxy / MavenProxyServiceImpl.java
index 21b28d450bb4f3d3a69860f5add82c423e670c40..5f87f24aca808191dfe80cec34026a0762c305a4 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Copyright (C) 2007-2012 Argeo GmbH
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *         http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.argeo.slc.repo.maven.proxy;
 
 import java.util.ArrayList;
@@ -28,14 +43,13 @@ public class MavenProxyServiceImpl extends AbstractUrlProxy implements
 
        private List<RemoteRepository> defaultRepositories = new ArrayList<RemoteRepository>();
 
-       private boolean rootNodeIsArtifactBase = RepoConstants.ARTIFACTS_BASE_PATH
-                       .equals("/");
+       private String artifactsBasePath = RepoConstants.DEFAULT_ARTIFACTS_BASE_PATH;
 
        /** Inititalizes the artifacts area. */
        @Override
        protected void beforeInitSessionSave(Session session)
                        throws RepositoryException {
-               JcrUtils.mkdirsSafe(session, RepoConstants.ARTIFACTS_BASE_PATH);
+               JcrUtils.mkdirsSafe(session, RepoConstants.DEFAULT_ARTIFACTS_BASE_PATH);
                Node proxiedRepositories = JcrUtils.mkdirsSafe(session,
                                RepoConstants.PROXIED_REPOSITORIES);
                for (RemoteRepository repository : defaultRepositories) {
@@ -97,10 +111,10 @@ public class MavenProxyServiceImpl extends AbstractUrlProxy implements
 
        /** The JCR path where this file could be found */
        public String getNodePath(String path) {
-               if (rootNodeIsArtifactBase)
+               if (artifactsBasePath.equals(RepoConstants.DEFAULT_ARTIFACTS_BASE_PATH))
                        return path;
                else
-                       return RepoConstants.ARTIFACTS_BASE_PATH + path;
+                       return artifactsBasePath + path;
        }
 
        public void setDefaultRepositories(
@@ -108,4 +122,8 @@ public class MavenProxyServiceImpl extends AbstractUrlProxy implements
                this.defaultRepositories = defaultRepositories;
        }
 
+       public void setArtifactsBasePath(String artifactsBasePath) {
+               this.artifactsBasePath = artifactsBasePath;
+       }
+
 }