Package org.joget.apps.userview.service

Examples of org.joget.apps.userview.service.UserviewService


            try {
                String appId = request.getParameterValues("__a_")[0];
                String uId = request.getParameterValues("__u_")[0];

                if (!appId.isEmpty() && !uId.isEmpty()) {
                    UserviewService userviewService = (UserviewService) appContext.getBean("userviewService");
                    UserviewTheme theme = userviewService.getUserviewTheme(appId, uId);

                    if (theme != null && theme.getCss() != null) {
                        return theme.getCss();
                    }
                }
View Full Code Here

TOP

Related Classes of org.joget.apps.userview.service.UserviewService

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.