]> source.dussan.org Git - archiva.git/commitdiff
no more need of the ROLE field
authorOlivier Lamy <olamy@apache.org>
Mon, 9 Apr 2012 21:18:55 +0000 (21:18 +0000)
committerOlivier Lamy <olamy@apache.org>
Mon, 9 Apr 2012 21:18:55 +0000 (21:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1311456 13f79535-47bb-0310-9956-ffa450edef68

redback-authentication/redback-authentication-api/src/main/java/org/apache/archiva/redback/authentication/AuthenticationDataSource.java
redback-common/redback-common-ldap/src/main/java/org/apache/archiva/redback/common/ldap/connection/LdapConnectionFactory.java
redback-data-management/src/main/java/org/apache/archiva/redback/management/DataManagementTool.java
redback-integrations/redback-common-integrations/src/main/java/org/apache/archiva/redback/integration/mail/MailGenerator.java
redback-integrations/redback-struts2/redback-struts2-integration/src/test/java/org/apache/archiva/redback/struts2/interceptor/MockComponent.java
redback-system/src/test/java/org/apache/archiva/redback/system/SecureApplication.java

index f745db9886abbc47121fcf25c549156747d9d956..82a49a2fd9b3e2c478a45de112950cfa2ca7ce74 100644 (file)
@@ -30,8 +30,6 @@ package org.apache.archiva.redback.authentication;
  */
 public interface AuthenticationDataSource
 {
-    public String ROLE = AuthenticationDataSource.class.getName();
-
     String getPrincipal();
 
     boolean isEnforcePasswordChange();
index 3821adfc496009d6a972352a98aa6b2d43375802..e7ca10ef46874a4e1050e38bbd997be515382fa4 100644 (file)
@@ -31,8 +31,6 @@ import javax.naming.spi.StateFactory;
  */
 public interface LdapConnectionFactory
 {
-    String ROLE = LdapConnectionFactory.class.getName();
-
     LdapConnection getConnection()
         throws LdapException;
 
index 70952135da82a38da0c3fbde8faec99ca09fcfcb..8949cf5341d9388e860faa29ba3957dd82238229 100644 (file)
@@ -33,10 +33,6 @@ import java.io.IOException;
  */
 public interface DataManagementTool
 {
-    /**
-     * Plexus role.
-     */
-    String ROLE = DataManagementTool.class.getName();
 
     void backupRBACDatabase( RBACManager manager, File backupDirectory )
         throws RbacManagerException, IOException, XMLStreamException;
index 5255409976ecc2e5cd7134ca9abb6aae21613a3d..e7ae4344871a154f67a866e67dfe8b8a2582e97f 100644 (file)
@@ -29,7 +29,5 @@ import org.apache.archiva.redback.keys.AuthenticationKey;
  */
 public interface MailGenerator
 {
-    String ROLE = MailGenerator.class.getName();
-
     String generateMail( String templateName, AuthenticationKey authkey, String baseUrl );
 }
index fb796d6177f776d79d37b23ba68d33a71cc8a208..8fc86898a109906abf8711f9cfef013ae35c03ce 100644 (file)
@@ -24,5 +24,5 @@ package org.apache.archiva.redback.system;
  */
 public interface SecureApplication
 {
-    String ROLE = SecureApplication.class.getName();
+    //
 }