Package org.jboss.osgi.repository

Examples of org.jboss.osgi.repository.RepositoryStorageFactory


    public synchronized void start(StartContext context) throws StartException {
        ServiceController<?> serviceController = context.getController();
        LOGGER.tracef("Starting: %s in mode %s", serviceController.getName(), serviceController.getMode());
        final ServerEnvironment serverenv = injectedServerEnvironment.getValue();
        final File storageDir = new File(serverenv.getServerDataDir().getPath() + File.separator + "repository");
        RepositoryStorageFactory factory = new RepositoryStorageFactory() {
            @Override
            public RepositoryStorage create(XRepository repository) {
                return new FileBasedRepositoryStorage(repository, storageDir) {
                    @Override
                    public XResource addResource(XResource res) throws RepositoryStorageException {
View Full Code Here

TOP

Related Classes of org.jboss.osgi.repository.RepositoryStorageFactory

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.