Examples of AvailableProfileConfigurationDTO


Examples of org.wso2.carbon.profiles.mgt.dto.AvailableProfileConfigurationDTO

     * @return
     * @throws ProfileManagementException
     */
    public AvailableProfileConfigurationDTO getAllAvailableProfileConfiguraionsForUserStore(
            String userStore) throws ProfileManagementException {
        AvailableProfileConfigurationDTO availableConfiguration = null;

        validateInputParameters(new String[]{userStore});

        try {
            availableConfiguration = new AvailableProfileConfigurationDTO();
            availableConfiguration.setDialects(getDialectsForUserStore());
            return availableConfiguration;
        } catch (Exception e) {
            log.error("Error while loading available profile configurations for user store "
                    + userStore, e);
            throw new ProfileManagementException(
View Full Code Here

Examples of org.wso2.carbon.profiles.mgt.dto.AvailableProfileConfigurationDTO

     * @return
     * @throws ProfileManagementException
     */
    public AvailableProfileConfigurationDTO getAllAvailableProfileConfiguraions()
            throws ProfileManagementException {
        AvailableProfileConfigurationDTO availableConfiguration = null;

        try {
            availableConfiguration = new AvailableProfileConfigurationDTO();
            availableConfiguration.setDialects(getDialects());
            return availableConfiguration;
        } catch (Exception e) {
            log.error("Error while loading available profile configurations", e);
            throw new ProfileManagementException(
                    "Error while loading available profile configurations", e);
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.