From: Brett Porter Date: Mon, 11 Dec 2006 06:50:41 +0000 (+0000) Subject: clean up javadoc X-Git-Tag: archiva-0.9-alpha-1~224 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0c91515a8f1241a1977f39ad9a1ba7f8c25ccc5d;p=archiva.git clean up javadoc git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@485531 13f79535-47bb-0310-9956-ffa450edef68 --- 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; }