You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by br...@apache.org on 2006/12/11 07:50:42 UTC

svn commit: r485531 - /maven/archiva/trunk/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java

Author: brett
Date: Sun Dec 10 22:50:41 2006
New Revision: 485531

URL: http://svn.apache.org/viewvc?view=rev&rev=485531
Log:
clean up javadoc

Modified:
    maven/archiva/trunk/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java

Modified: maven/archiva/trunk/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java
URL: http://svn.apache.org/viewvc/maven/archiva/trunk/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java?view=diff&rev=485531&r1=485530&r2=485531
==============================================================================
--- maven/archiva/trunk/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java (original)
+++ maven/archiva/trunk/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java Sun Dec 10 22:50:41 2006
@@ -1,5 +1,24 @@
 package org.apache.maven.archiva.security;
 
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */
+
 import org.codehaus.plexus.rbac.profile.AbstractRoleProfile;
 
 import java.util.ArrayList;
@@ -12,11 +31,7 @@
 public class BaseRepositoryManagerRoleProfile
     extends AbstractRoleProfile
 {
-    /**
-     * Create the Role name for a Repository Manager, using the provided repository id.
-     *
-     */
-    public String getRoleName( )
+    public String getRoleName()
     {
         return ArchivaRoleConstants.BASE_REPOSITORY_MANAGER;
     }