1 package org.javabb.vo; 2 3 4 5 import org.apache.commons.logging.Log; 6 import org.apache.commons.logging.LogFactory; 7 8 23 24 29 public abstract class VOObject { 30 33 public Log log = LogFactory.getLog(VOObject.class); 34 35 private Long id; 36 37 40 public Long getId() { 41 return id; 42 } 43 44 47 public void setId(Long id) { 48 this.id = id; 49 } 50 } 51 | Popular Tags |