Examples of maintainIndex4MeasurePoints()


Examples of com.narirelays.ems.services.MaintainMeasurePoints4SophicService.maintainIndex4MeasurePoints()

{
  private static final Logger LOG = LoggerFactory.getLogger(MaintainIndex4MeasurePoints.class);
  public void maintain()
  {
    MaintainMeasurePoints4SophicService service = (MaintainMeasurePoints4SophicService)StorageService.ctx.getBean("MaintainMeasurePoints4SophicService");
    if(service.maintainIndex4MeasurePoints()==true)
    {
      LOG.info("MeasurePoints Index update succeed!");
    }
    else
    {
View Full Code Here

Examples of com.narirelays.ems.services.MaintainMeasurePoints4SophicService.maintainIndex4MeasurePoints()

 
  public String manitainIndex4MeasurePoints()
  {
    MaintainMeasurePoints4SophicService maintainMeasurePoints4SophicService = (MaintainMeasurePoints4SophicService)StorageService.ctx.getBean("MaintainMeasurePoints4SophicService");
    if(maintainMeasurePoints4SophicService!=null){
      boolean signal = maintainMeasurePoints4SophicService.maintainIndex4MeasurePoints();
      resultInfo = new OperResult();
      if(signal) resultInfo.setSucceed();
      else resultInfo.setFailed();
    }
    return SUCCESS;
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.