mirror of
https://github.com/apache/archiva.git
synced 2025-03-06 16:39:13 +00:00
fixed formatting
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@951241 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d09f0872af
commit
f51b049d51
@ -27,11 +27,11 @@
|
||||
|
||||
public class GenericMetadataFacet
|
||||
implements MetadataFacet
|
||||
{
|
||||
{
|
||||
private Map<String, String> additionalProperties;
|
||||
|
||||
|
||||
public static final String FACET_ID = "org.apache.archiva.metadata.generic";
|
||||
|
||||
|
||||
public String getFacetId()
|
||||
{
|
||||
return FACET_ID;
|
||||
@ -43,13 +43,13 @@ public String getName()
|
||||
}
|
||||
|
||||
public void fromProperties( Map<String, String> properties )
|
||||
{
|
||||
if( additionalProperties == null )
|
||||
{
|
||||
if ( additionalProperties == null )
|
||||
{
|
||||
additionalProperties = new TreeMap<String, String>();
|
||||
additionalProperties = new TreeMap<String, String>();
|
||||
}
|
||||
|
||||
for( String key : properties.keySet() )
|
||||
|
||||
for ( String key : properties.keySet() )
|
||||
{
|
||||
additionalProperties.put( key, properties.get( key ) );
|
||||
}
|
||||
@ -58,18 +58,18 @@ public void fromProperties( Map<String, String> properties )
|
||||
public Map<String, String> toProperties()
|
||||
{
|
||||
Map<String, String> properties = new TreeMap<String, String>();
|
||||
|
||||
if( additionalProperties != null )
|
||||
|
||||
if ( additionalProperties != null )
|
||||
{
|
||||
for( String key : additionalProperties.keySet() )
|
||||
for ( String key : additionalProperties.keySet() )
|
||||
{
|
||||
properties.put( key, additionalProperties.get( key ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return properties;
|
||||
}
|
||||
|
||||
|
||||
public Map<String, String> getAdditionalProperties()
|
||||
{
|
||||
return additionalProperties;
|
||||
|
@ -23,7 +23,8 @@
|
||||
import org.apache.archiva.metadata.model.MetadataFacetFactory;
|
||||
|
||||
/**
|
||||
* @plexus.component role="org.apache.archiva.metadata.model.MetadataFacetFactory" role-hint="org.apache.archiva.metadata.generic"
|
||||
* @plexus.component role="org.apache.archiva.metadata.model.MetadataFacetFactory"
|
||||
* role-hint="org.apache.archiva.metadata.generic"
|
||||
*/
|
||||
public class GenericMetadataFacetFactory
|
||||
implements MetadataFacetFactory
|
||||
|
Loading…
x
Reference in New Issue
Block a user