- package test;
- import org.apache.struts.action.ActionMapping;
- public class MyActionMapping extends ActionMapping {
- protected boolean createLog = false;
- public void setCreateLog(boolean createLog) {
- this.createLog = createLog;
- }
- public boolean getCreateLog() {
- return createLog;
- }
- }