Package com.sparc.knappsack.enums

Examples of com.sparc.knappsack.enums.StorageType


        }

        Date startDate = getStartDate(organization);
        Date endDate = getEndDate();
        StorageConfiguration storageConfiguration = organization.getOrgStorageConfig().getStorageConfigurations().get(0);
        StorageType storageType = storageConfiguration.getStorageType();
        if(storageType.isRemote()) {
            StorageService storageService = storageServiceFactory.getStorageService(storageType);
            return ((RemoteStorageService) storageService).getMegabyteBandwidthUsed(organization.getOrgStorageConfig(), startDate, endDate);
        }
        return 0.0;
    }
View Full Code Here

TOP

Related Classes of com.sparc.knappsack.enums.StorageType

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.