Package org.apache.avalon.repository

Examples of org.apache.avalon.repository.Repository


        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 );
        assertNotNull( "url", url );
    }
View Full Code Here

TOP

Related Classes of org.apache.avalon.repository.Repository

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.