Package org.b3log.solo.repository

Examples of org.b3log.solo.repository.PluginRepository


        LOGGER.log(Level.DEBUG, "Processing an event[type={0}, data={1}] in listener[className={2}]",
            new Object[] {event.getType(), plugins, PluginRefresher.class.getName()});

        final LatkeBeanManager beanManager = Lifecycle.getBeanManager();
        final PluginRepository pluginRepository = beanManager.getReference(PluginRepositoryImpl.class);
       
        final Transaction transaction = pluginRepository.beginTransaction();
       
        try {
            final PluginMgmtService pluginMgmtService = beanManager.getReference(PluginMgmtService.class);
           
            pluginMgmtService.refresh(plugins);
View Full Code Here


     *
     * @throws Exception exception
     */
    @Test
    public void test() throws Exception {
        final PluginRepository pluginRepository = getPluginRepository();
    }
View Full Code Here

     *
     * @throws Exception exception
     */
    @Test
    public void test() throws Exception {
        final PluginRepository pluginRepository = getPluginRepository();
    }
View Full Code Here

TOP

Related Classes of org.b3log.solo.repository.PluginRepository

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.