Package org.apache.archiva.admin.model.beans

Examples of org.apache.archiva.admin.model.beans.PropertyEntry


    public List<PropertyEntry> getPoliciesEntries()
    {
        policiesEntries = new ArrayList<>( getPolicies().size() );
        for ( Map.Entry<String, String> entry : getPolicies().entrySet() )
        {
            policiesEntries.add( new PropertyEntry( entry.getKey(), entry.getValue() ) );
        }
        return policiesEntries;
    }
View Full Code Here


    public List<PropertyEntry> getPropertiesEntries()
    {
        propertiesEntries = new ArrayList<>( getProperties().size() );
        for ( Map.Entry<String, String> entry : getProperties().entrySet() )
        {
            propertiesEntries.add( new PropertyEntry( entry.getKey(), entry.getValue() ) );
        }
        return propertiesEntries;
    }
View Full Code Here

    public List<PropertyEntry> getPoliciesEntries()
    {
        policiesEntries = new ArrayList<PropertyEntry>( getPolicies().size() );
        for ( Map.Entry<String, String> entry : getPolicies().entrySet() )
        {
            policiesEntries.add( new PropertyEntry( entry.getKey(), entry.getValue() ) );
        }
        return policiesEntries;
    }
View Full Code Here

    public List<PropertyEntry> getPropertiesEntries()
    {
        propertiesEntries = new ArrayList<PropertyEntry>( getProperties().size() );
        for ( Map.Entry<String, String> entry : getProperties().entrySet() )
        {
            propertiesEntries.add( new PropertyEntry( entry.getKey(), entry.getValue() ) );
        }
        return propertiesEntries;
    }
View Full Code Here

TOP

Related Classes of org.apache.archiva.admin.model.beans.PropertyEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.