Examples of PluginProvider


Examples of org.jboss.as.domain.management.plugin.PlugInProvider

    public AuthenticationPlugIn<Credential> loadAuthenticationPlugIn(final String name) {
        AuthenticationPlugIn<Credential> response = null;
        synchronized (authenticationProviders) {
            if (authenticationProviders.containsKey(name)) {
                PlugInProvider provider = authenticationProviders.get(name);
                response = provider.loadAuthenticationPlugIn(name);
                if (response == null) {
                    // For some reason the provider that previosly handed this name is no longer handling it.
                    authenticationProviders.remove(name);
                }
            }
View Full Code Here

Examples of org.jboss.as.domain.management.plugin.PlugInProvider

    public AuthorizationPlugIn loadAuthorizationPlugIn(final String name) {
        AuthorizationPlugIn response = null;
        synchronized (authorizationProviders) {
            if (authorizationProviders.containsKey(name)) {
                PlugInProvider provider = authorizationProviders.get(name);
                response = provider.loadAuthorizationPlugIn(name);
                if (response == null) {
                    // For some reason the provider that previosly handed this name is no longer handling it.
                    authorizationProviders.remove(name);
                }
            }
View Full Code Here

Examples of org.jboss.as.domain.management.plugin.PlugInProvider

    public AuthenticationPlugIn<Credential> loadAuthenticationPlugIn(final String name) {
        AuthenticationPlugIn<Credential> response = null;
        synchronized (authenticationProviders) {
            if (authenticationProviders.containsKey(name)) {
                PlugInProvider provider = authenticationProviders.get(name);
                response = provider.loadAuthenticationPlugIn(name);
                if (response == null) {
                    // For some reason the provider that previosly handed this name is no longer handling it.
                    authenticationProviders.remove(name);
                }
            }
View Full Code Here

Examples of org.jboss.as.domain.management.plugin.PlugInProvider

    public AuthorizationPlugIn loadAuthorizationPlugIn(final String name) {
        AuthorizationPlugIn response = null;
        synchronized (authorizationProviders) {
            if (authorizationProviders.containsKey(name)) {
                PlugInProvider provider = authorizationProviders.get(name);
                response = provider.loadAuthorizationPlugIn(name);
                if (response == null) {
                    // For some reason the provider that previosly handed this name is no longer handling it.
                    authorizationProviders.remove(name);
                }
            }
View Full Code Here

Examples of org.jboss.as.domain.management.plugin.PlugInProvider

    public AuthenticationPlugIn<Credential> loadAuthenticationPlugIn(final String name) {
        AuthenticationPlugIn<Credential> response = null;
        synchronized (authenticationProviders) {
            if (authenticationProviders.containsKey(name)) {
                PlugInProvider provider = authenticationProviders.get(name);
                response = provider.loadAuthenticationPlugIn(name);
                if (response == null) {
                    // For some reason the provider that previosly handed this name is no longer handling it.
                    authenticationProviders.remove(name);
                }
            }
View Full Code Here

Examples of org.jboss.as.domain.management.plugin.PlugInProvider

    public AuthorizationPlugIn loadAuthorizationPlugIn(final String name) {
        AuthorizationPlugIn response = null;
        synchronized (authorizationProviders) {
            if (authorizationProviders.containsKey(name)) {
                PlugInProvider provider = authorizationProviders.get(name);
                response = provider.loadAuthorizationPlugIn(name);
                if (response == null) {
                    // For some reason the provider that previosly handed this name is no longer handling it.
                    authorizationProviders.remove(name);
                }
            }
View Full Code Here

Examples of org.rat.free.security.makifx.core.base.PluginProvider

                .addListener((ObservableValue<? extends Tab> tab, Tab old_tab, Tab new_tab) -> {
                    String id = new_tab.getId();

                    if (id != null) {

                        PluginProvider ap = MAP_PLUGIN.get(id);

                        try {
                            if (ap != null) {
                                ap.setSelected();
                            }
                        } catch (Exception exc) {
                            exc.printStackTrace();
                        }
View Full Code Here

Examples of org.rat.free.security.makifx.core.base.PluginProvider

        }
    }

    private void saveAllData() {

        final PluginProvider plugin = getPluginAnswerNegativeOnSavingData();

        if (plugin != null) {

            log("WRN - Can't save plugin:" + plugin.getId() + " RETURN FALSE");
            selectPluginTab(plugin);
            return;
        }

        createPopupMessage("main_save_msg", new AnswerPopupMessage() {
View Full Code Here

Examples of org.rat.free.security.makifx.core.base.PluginProvider

            }

            /**
             * Ce' almeno un plugin che ha risposto errore prima di salvare.
             */
            PluginProvider plugin = getPluginAnswerNegativeOnSavingData();
            if (plugin != null) {
                selectPluginTab(plugin);
                return false;
            }

View Full Code Here

Examples of org.rat.free.security.makifx.core.base.PluginProvider

                .addListener((ObservableValue<? extends Tab> tab, Tab old_tab, Tab new_tab) -> {
                    String id = new_tab.getId();

                    if (id != null) {

                        PluginProvider ap = MAP_PLUGIN.get(id);

                        try {
                            if (ap != null) {
                                ap.setSelected();
                            }
                        } catch (Exception exc) {
                            exc.printStackTrace();
                        }
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.