Package com.narirelays.ems.persistence.orm

Examples of com.narirelays.ems.persistence.orm.SccRevision


          BeanUtils.populate(energyMedia, properties);
          energyMedia.setId(id);
          energyMediaDAO.merge(energyMedia);
          Double newSCC = energyMedia.getScc();
          if((oldSCC==null&&newSCC!=null)||(oldSCC!=null&&newSCC==null)||(oldSCC!=null&&newSCC!=null&&!oldSCC.equals(newSCC))){
            SccRevision sccRevision = new SccRevision();
            sccRevision.setId(new SccRevisionId(id,new Date()));
            sccRevision.setScc(newSCC);
            sccRevisionDAO.merge(sccRevision);
          }
          result.setSucceed(EM_MODIFY_SUCCEED,id);

        } catch (IllegalAccessException e) {
View Full Code Here

TOP

Related Classes of com.narirelays.ems.persistence.orm.SccRevision

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.