Package org.jivesoftware.openfire.fastpath.settings.chat

Examples of org.jivesoftware.openfire.fastpath.settings.chat.ChatSetting


            Log.error(e.getMessage(), e);
            return null;
        }

        ChatSettings chatSettings = chatSettingsManager.getChatSettings(workgroup);
        ChatSetting setting = chatSettings.getChatSetting(imageName);
        String encodedValue = setting.getValue();
        if (encodedValue == null) {
            return null;
        }

        return StringUtils.decodeBase64(encodedValue);
View Full Code Here

TOP

Related Classes of org.jivesoftware.openfire.fastpath.settings.chat.ChatSetting

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.