Examples of freeLicense()


Examples of org.jayasoft.woj.server.data.LicenseDao.freeLicense()

    }

    public void freeLicense(Long userId) throws LicenseException {
        LicenseDao lDao = WOJServer.getInstance().getDataService().getLicenseDao();
        try {
            lDao.freeLicense(userId);
        } catch (DataAccessException dae) {
            LOGGER.warn("db error while freeing license for user:" + userId);
            throw new LicenseException("cannot free license of user:" + userId);
        }
    }
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.