Package org.apache.avalon.repository.provider

Examples of org.apache.avalon.repository.provider.CacheManager.createRepository()


        assertNotNull( factory );

        CacheManager manager = (CacheManager) factory.create() ;
        assertNotNull( manager ) ;
  
        Repository repository = manager.createRepository() ;
        assertNotNull( repository ) ;
       
        Artifact artifact = Artifact.createArtifact(
          "avalon-framework", "avalon-framework-api", "4.1.5" );
        URL url = repository.getResource( artifact );
View Full Code Here


        try
        {
            Factory factory = m_context.getInitialFactory();
            CacheManager manager = (CacheManager)factory.create();
            m_repository = manager.createRepository();
        }
        catch( Throwable e )
        {
            final String error =
              "Internal error while attempt to construct initial repository.";
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.