Examples of XMPPConfigurator


Examples of org.wso2.carbon.identity.provider.xmpp.XMPPConfigurator

        }
        validateInputParameters(new String[]{dto.getUserId(), dto.getXmppServer(),
                dto.getXmppUserName(), dto.getUserCode()}, message);
        checkUserAuthorization(dto.getUserId(), "addUserXmppSettings");

        XMPPConfigurator provider = new XMPPConfigurator();
        provider.addXmppSettings(dto);
        return true;
    }
View Full Code Here

Examples of org.wso2.carbon.identity.provider.xmpp.XMPPConfigurator

            }
        }
        validateInputParameters(new String[]{dto.getUserId(), dto.getXmppServer(),
                dto.getXmppUserName(), dto.getUserCode()}, message);
        checkUserAuthorization(dto.getUserId(), "editXmppSettings");
        XMPPConfigurator provider = new XMPPConfigurator();
        provider.editXmppSettings(dto);
    }
View Full Code Here

Examples of org.wso2.carbon.identity.provider.xmpp.XMPPConfigurator

     */
    public XMPPSettingsDTO getXmppSettings(String userId) throws IdentityProviderException {
        String message = "Invalid parameters provided to getXmppSettings";
        validateInputParameters(new String[]{userId}, message);
        checkUserAuthorization(userId, "getXmppSettings");
        XMPPConfigurator provider = new XMPPConfigurator();
        return provider.getXmppSettings(userId);
    }
View Full Code Here

Examples of org.wso2.carbon.identity.provider.xmpp.XMPPConfigurator

     */
    public boolean isXMPPSettingsEnabled(String userId) throws IdentityProviderException {
        String message = "Invalid parameters provided to isXMPPSettingsEnabled";
        validateInputParameters(new String[]{userId}, message);
        checkUserAuthorization(userId, "isXMPPSettingsEnabled");
        XMPPConfigurator provider = new XMPPConfigurator();
        return provider.isXmppSettingsEnabled(userId);
    }
View Full Code Here

Examples of org.wso2.carbon.identity.provider.xmpp.XMPPConfigurator

     */
    public boolean hasXMPPSettings(String userId) throws IdentityProviderException {
        String message = "Invalid parameters provided to hasXMPPSettings";
        validateInputParameters(new String[]{userId}, message);
        checkUserAuthorization(userId, "hasXMPPSettings");
        XMPPConfigurator provider = new XMPPConfigurator();
        return provider.hasXMPPSettings(userId);
    }
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.