mirror of https://github.com/apache/archiva.git
format and debug infos
This commit is contained in:
parent
c5e2567516
commit
d9473241c9
|
@ -89,7 +89,7 @@ import java.util.Set;
|
|||
* before reading it from the registry.
|
||||
* </p>
|
||||
*/
|
||||
@Service( "archivaConfiguration#default" )
|
||||
@Service("archivaConfiguration#default")
|
||||
public class DefaultArchivaConfiguration
|
||||
implements ArchivaConfiguration, RegistryListener
|
||||
{
|
||||
|
@ -99,7 +99,7 @@ public class DefaultArchivaConfiguration
|
|||
* Plexus registry to read the configuration from.
|
||||
*/
|
||||
@Inject
|
||||
@Named( value = "commons-configuration" )
|
||||
@Named(value = "commons-configuration")
|
||||
private Registry registry;
|
||||
|
||||
@Inject
|
||||
|
@ -183,7 +183,7 @@ public class DefaultArchivaConfiguration
|
|||
return configuration;
|
||||
}
|
||||
|
||||
@SuppressWarnings( "unchecked" )
|
||||
@SuppressWarnings("unchecked")
|
||||
private Configuration load()
|
||||
{
|
||||
// TODO: should this be the same as section? make sure unnamed sections still work (eg, sys properties)
|
||||
|
@ -439,7 +439,7 @@ public class DefaultArchivaConfiguration
|
|||
return registry.getSubset( KEY );
|
||||
}
|
||||
|
||||
@SuppressWarnings( "unchecked" )
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public synchronized void save( Configuration configuration )
|
||||
throws IndeterminateConfigurationException, RegistryException
|
||||
|
@ -464,10 +464,13 @@ public class DefaultArchivaConfiguration
|
|||
|
||||
// a little aggressive with the repositoryScanning and databaseScanning - should be no need to split
|
||||
// that configuration
|
||||
if ( key.startsWith( "repositories" ) || key.startsWith( "proxyConnectors" ) || key.startsWith(
|
||||
"networkProxies" ) || key.startsWith( "repositoryScanning" ) || key.startsWith(
|
||||
"remoteRepositories" ) || key.startsWith( "managedRepositories" ) || key.startsWith(
|
||||
"repositoryGroups" ) )
|
||||
if ( key.startsWith( "repositories" ) //
|
||||
|| key.startsWith( "proxyConnectors" ) //
|
||||
|| key.startsWith( "networkProxies" ) //
|
||||
|| key.startsWith( "repositoryScanning" ) //
|
||||
|| key.startsWith( "remoteRepositories" ) //
|
||||
|| key.startsWith( "managedRepositories" ) //
|
||||
|| key.startsWith( "repositoryGroups" ) ) //
|
||||
{
|
||||
foundList = true;
|
||||
}
|
||||
|
@ -537,8 +540,6 @@ public class DefaultArchivaConfiguration
|
|||
{
|
||||
c.setRefreshCronExpression( escapeCronExpression( c.getRefreshCronExpression() ) );
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
private Registry createDefaultConfigurationFile()
|
||||
|
@ -558,8 +559,7 @@ public class DefaultArchivaConfiguration
|
|||
throw new RegistryException(
|
||||
"Unable to create configuration file in either user [" + userConfigFilename + "] or alternative ["
|
||||
+ altConfigFilename
|
||||
+ "] locations on disk, usually happens when not allowed to write to those locations."
|
||||
);
|
||||
+ "] locations on disk, usually happens when not allowed to write to those locations." );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -731,7 +731,7 @@ public class DefaultRedbackRuntimeConfigurationAdmin
|
|||
{
|
||||
Collection<String> keys = userConfiguration.getKeys();
|
||||
|
||||
Set<String> keysSet = new HashSet<String>( keys );
|
||||
Set<String> keysSet = new HashSet<>( keys );
|
||||
|
||||
keysSet.addAll( getRedbackRuntimeConfiguration().getConfigurationProperties().keySet() );
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@ import java.util.Map;
|
|||
public abstract class AbstractRestService
|
||||
{
|
||||
|
||||
protected Logger log = LoggerFactory.getLogger( getClass() );
|
||||
protected final Logger log = LoggerFactory.getLogger( getClass() );
|
||||
|
||||
@Inject
|
||||
private List<AuditListener> auditListeners = new ArrayList<>();
|
||||
|
|
|
@ -62,6 +62,7 @@ public class DefaultRedbackRuntimeConfigurationService
|
|||
extends AbstractRestService
|
||||
implements RedbackRuntimeConfigurationService
|
||||
{
|
||||
|
||||
@Inject
|
||||
private RedbackRuntimeConfigurationAdmin redbackRuntimeConfigurationAdmin;
|
||||
|
||||
|
@ -97,7 +98,12 @@ public class DefaultRedbackRuntimeConfigurationService
|
|||
{
|
||||
try
|
||||
{
|
||||
return redbackRuntimeConfigurationAdmin.getRedbackRuntimeConfiguration();
|
||||
RedbackRuntimeConfiguration redbackRuntimeConfiguration =
|
||||
redbackRuntimeConfigurationAdmin.getRedbackRuntimeConfiguration();
|
||||
|
||||
log.debug( "getRedbackRuntimeConfiguration -> {}", redbackRuntimeConfiguration );
|
||||
|
||||
return redbackRuntimeConfiguration;
|
||||
}
|
||||
catch ( RepositoryAdminException e )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue