Package org.apache.felix.useradmin.filestore

Examples of org.apache.felix.useradmin.filestore.RoleRepositoryFileStore


public class Activator implements BundleActivator {

    private RoleRepositoryFileStore m_store;

    public void start(BundleContext context) throws Exception {
        m_store = new RoleRepositoryFileStore(context.getDataFile(""));
        m_store.start();
       
        String[] interfaces = { RoleRepositoryStore.class.getName(), UserAdminListener.class.getName(), ManagedService.class.getName() };
       
        Properties props = new Properties();
View Full Code Here

TOP

Related Classes of org.apache.felix.useradmin.filestore.RoleRepositoryFileStore

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.