aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Porter <brett@apache.org>2006-12-11 06:50:41 +0000
committerBrett Porter <brett@apache.org>2006-12-11 06:50:41 +0000
commit0c91515a8f1241a1977f39ad9a1ba7f8c25ccc5d (patch)
treee4fe387630f644aef572196b3b3c20ad7de2c65a
parent41a3a997dc97d72356129d3b7227ad7a5cea3776 (diff)
downloadarchiva-0c91515a8f1241a1977f39ad9a1ba7f8c25ccc5d.tar.gz
archiva-0c91515a8f1241a1977f39ad9a1ba7f8c25ccc5d.zip
clean up javadoc
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@485531 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java25
1 files changed, 20 insertions, 5 deletions
diff --git a/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java b/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java
index a165e9bbc..a652aa73e 100644
--- a/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java
+++ b/archiva-security/src/main/java/org/apache/maven/archiva/security/BaseRepositoryManagerRoleProfile.java
@@ -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 @@ import java.util.List;
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;
}