Package org.apache.archiva.rest.api.services

Examples of org.apache.archiva.rest.api.services.PluginsService


        return getService( PingService.class, null );
    }
   
    protected PluginsService getPluginsService()
    {
        PluginsService service = getService( PluginsService.class, null );
        WebClient.client( service ).accept( MediaType.TEXT_PLAIN );
        WebClient.client( service ).type( MediaType.TEXT_PLAIN );
        return service;
    }
View Full Code Here


    public void testGetPluginAdmin()
            throws Exception
    {
        // 1000000L

        PluginsService res = getPluginsService();
        String value = res.getAdminPlugins();
        assertEquals( "", value );
    }
View Full Code Here

        return getService( PingService.class, null );
    }
   
    protected PluginsService getPluginsService()
    {
        PluginsService service = getService( PluginsService.class, null );
        WebClient.client( service ).accept( MediaType.TEXT_PLAIN );
        WebClient.client( service ).type( MediaType.TEXT_PLAIN );
        return service;
    }
View Full Code Here

TOP

Related Classes of org.apache.archiva.rest.api.services.PluginsService

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.