add access to listeners

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1418772 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-12-08 22:32:57 +00:00
parent 3257c3fac5
commit 7181023737
2 changed files with 10 additions and 0 deletions

View File

@ -85,6 +85,11 @@
<artifactId>slf4j-simple</artifactId> <artifactId>slf4j-simple</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>org.hsqldb</groupId> <groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId> <artifactId>hsqldb</artifactId>

View File

@ -152,4 +152,9 @@ public boolean isFinalImplementation()
{ {
return false; return false;
} }
protected List<UserManagerListener> getListeners()
{
return listeners;
}
} }