1 17 18 19 20 package org.apache.lenya.cms.workflow; 21 22 import org.apache.lenya.workflow.Event; 23 import org.apache.lenya.workflow.State; 24 import org.apache.lenya.workflow.impl.Version; 25 26 public class CMSVersion extends Version { 27 28 32 public String getUserId() { 33 return userId; 34 } 35 36 40 public void setUserId(String userId) { 41 this.userId = userId; 42 } 43 44 49 public CMSVersion(Event event, State state) { 50 super(event, state); 51 } 52 53 private String userId; 54 55 } 56 | Popular Tags |