Examples of reload()


Examples of npanday.vendor.impl.SettingsRepository.reload()

        {
            RepositoryRegistry repositoryRegistry = (RepositoryRegistry) container.lookup( RepositoryRegistry.ROLE );
            SettingsRepository settingsRepository = (SettingsRepository) repositoryRegistry.find( "npanday-settings" );
            if ( settingsRepository != null )
            {
                settingsRepository.reload();
            }
        }
        catch ( ComponentLookupException e )
        {
            e.printStackTrace();
View Full Code Here

Examples of org.apache.archiva.configuration.ArchivaConfiguration.reload()

            WebApplicationContextUtils.getRequiredWebApplicationContext( req.getServletContext() );

        ArchivaConfiguration archivaConfiguration = applicationContext.getBean( ArchivaConfiguration.class );


        archivaConfiguration.reload();

    }
}
View Full Code Here

Examples of org.apache.cassandra.config.CFMetaData.reload()

        {
            RowMutation schemaUpdate = cfm.diff(newState, timestamp);
            schemaUpdate.apply();
        }

        cfm.reload();

        if (!StorageService.instance.isClientMode())
        {
            Table table = Table.open(cfm.ksName);
            table.getColumnFamilyStore(cfm.cfName).reload();
View Full Code Here

Examples of org.apache.cassandra.db.ColumnFamilyStore.reload()

        if (!clientMode)
        {
            Table table = Table.open(metadata.tableName);
            ColumnFamilyStore oldCfs = table.getColumnFamilyStore(metadata.cfName);
            oldCfs.reload();
        }
    }

    public void subdeflate(org.apache.cassandra.db.migration.avro.Migration mi)
    {
View Full Code Here

Examples of org.apache.catalina.Container.reload()

                if(log.isInfoEnabled())
                    log.info(sm.getString("hostConfig.reload", app.name));
                Context context = (Context) host.findChild(app.name);
                if (context.getState().isAvailable()) {
                    // Reload catches and logs exceptions
                    context.reload();
                } else {
                    // If the context was not started (for example an error
                    // in web.xml) we'll still get to try to start
                    try {
                        context.start();
View Full Code Here

Examples of org.apache.catalina.Context.reload()

public class ReloadContextController extends NoSelfContextHandlerController {

    protected void executeAction(String contextName) throws Exception {
        Context context = getContainerWrapper().getTomcatContainer().findContext(contextName);
        if (context != null) {
            context.reload();
        }
    }
}
View Full Code Here

Examples of org.apache.catalina.core.StandardContext.reload()

        log.info("restartContext(" + context.getName() + ")");

        if (context instanceof StandardContext) {
            try {
                StandardContext sctx = (StandardContext)context;
                sctx.reload();
            } catch (Exception e) {
                log.warn(sm.getString
                         ("hostConfig.context.restart", context.getName()), e);
                result = false;
            }
View Full Code Here

Examples of org.apache.directory.studio.connection.core.PasswordsKeyStoreManager.reload()

                }

                // Finally lets reload the global keystore
                try
                {
                    globalPasswordsKeyStoreManager.reload( passwordsKeyStoreManager.getMasterPassword() );
                }
                catch ( KeyStoreException e )
                {
                    ConnectionUIPlugin
                        .getDefault()
View Full Code Here

Examples of org.apache.fop.render.awt.viewer.PreviewPanel.reload()

      progress.setValue(90);

    PreviewPanel previewPanel = new PreviewPanel(agent, null, renderer);
    previewPanel.setScaleFactor(0.2);
    previewPanel.setDisplayMode(PreviewPanel.CONTINUOUS);
    previewPanel.reload();

    if(progress != null)
      progress.setValue(100);
   
    return previewPanel;
View Full Code Here

Examples of org.apache.jackrabbit.jcr2spi.state.ItemState.reload()

        */
        // TODO: check again if 'reload' is not possible for transiently-modified state
        if (!keepChanges || state.getStatus() == Status.EXISTING
            || state.getStatus() == Status.INVALIDATED) {
            // reload the workspace state from the persistent layer
            state.reload(keepChanges);
        }
    }

    /**
     * {@inheritDoc}
 
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.