1 21 22 package org.continuent.sequoia.controller.backend.result; 23 24 import java.io.Serializable ; 25 26 33 public class ExecuteUpdateResult extends AbstractResult implements Serializable  34 { 35 private static final long serialVersionUID = -57478579897478732L; 36 37 private int updateCount; 38 39 44 public ExecuteUpdateResult(int uc) 45 { 46 updateCount = uc; 47 } 48 49 54 public final int getUpdateCount() 55 { 56 return updateCount; 57 } 58 } 59 | Popular Tags |