Package org.sis.ancmessaging.server.domain

Examples of org.sis.ancmessaging.server.domain.Report


        return criteria.list();
    }

    @Override
    public void updateStatus(int reportId, String status) {
        Report oldReport = (Report) getSession().get(Report.class, reportId);
        if (oldReport != null) {
            oldReport.setStatus(status);
        }
        getSession().update(oldReport);
    }
View Full Code Here

TOP

Related Classes of org.sis.ancmessaging.server.domain.Report

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.