add javadoc comment and @since
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1414471 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8bf7b14a83
commit
1814062734
|
@ -37,7 +37,7 @@ import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ConfigurationFactory
|
* ConfigurationFactory
|
||||||
*
|
* @since 2.1
|
||||||
* @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
|
* @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -25,10 +25,11 @@ import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Olivier Lamy
|
* @author Olivier Lamy
|
||||||
|
* @since 2.1 moved to an interface
|
||||||
*/
|
*/
|
||||||
public interface UserConfiguration
|
public interface UserConfiguration
|
||||||
{
|
{
|
||||||
@PostConstruct
|
|
||||||
void initialize()
|
void initialize()
|
||||||
throws RegistryException;
|
throws RegistryException;
|
||||||
|
|
||||||
|
@ -44,7 +45,6 @@ public interface UserConfiguration
|
||||||
|
|
||||||
boolean getBoolean( String key, boolean defaultValue );
|
boolean getBoolean( String key, boolean defaultValue );
|
||||||
|
|
||||||
@SuppressWarnings( "unchecked" )
|
|
||||||
List<String> getList( String key );
|
List<String> getList( String key );
|
||||||
|
|
||||||
String getConcatenatedList( String key, String defaultValue );
|
String getConcatenatedList( String key, String defaultValue );
|
||||||
|
|
Loading…
Reference in New Issue