Package org.apache.stratos.usage.ui.clients

Examples of org.apache.stratos.usage.ui.clients.UsageServiceClient.retrieveTenantUsage()


            }
            String tenantIdStr = request.getParameter("tenant-id");
            if (tenantIdStr == null) {
                tenantIdStr = "0";
            }
            return serviceClient.retrieveTenantUsage(yearMonth, Integer.parseInt(tenantIdStr));
        } catch (Exception e) {
            String msg = "Failed to get tenant usages.";
            log.error(msg, e);
            throw new UIException(msg, 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.