Package org.exoplatform.portal.application

Examples of org.exoplatform.portal.application.ApplicationStatisticService


                // should probably use the ApplicationRegistryService at some point, but our statistics are not in sync with
                // this
                return portalContext.execute(new PortalContext.Request<Set<String>>() {
                    @Override
                    public Set<String> within(PortalContainer container) throws Exception {
                        ApplicationStatisticService service = getComponent(ApplicationStatisticService.class, container);
                        if (service == null)
                            return Collections.emptySet();

                        return new LinkedHashSet<String>(Arrays.asList(service.getApplicationList()));
                    }
                });
            } catch (Exception e) {
                getLogger().error("Exception retrieving list of applications for runtime portal resource.", e);
                return Collections.emptySet();
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.application.ApplicationStatisticService

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.