Package org.jayasoft.woj.portal.model

Examples of org.jayasoft.woj.portal.model.CommunityLicense


    public void addCommunityLicense(User u, String projectHome) throws ServiceException {
        LicenseDao licenseDao = DaoFactory.getLicenseDao();
        LOGGER.info("adding community license to user " + u.getLogin());

        try {
            CommunityLicense l = licenseDao.createCommunity();
            l.setProjectHomeUrl(projectHome);
           
            addFreeLicense(u, l);
        } catch (DaoException e) {
            throw new ServiceException("failed to add community license to user " + u.getLogin(), e);
        }
View Full Code Here


    public PersonalLicense createPersonal() {
        return new PersonalLicense();
    }
   
    public CommunityLicense createCommunity() {
        return new CommunityLicense();
    }
View Full Code Here

TOP

Related Classes of org.jayasoft.woj.portal.model.CommunityLicense

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.