01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.workflow.model;
09:
10: //base classes
11: import java.util.ArrayList;
12: import java.util.HashMap;
13: import java.util.Iterator;
14:
15: //project specific classes
16: import org.jfolder.common.UnexpectedSystemException;
17: import org.jfolder.security.audit.SecurityAudit;
18:
19: //other classes
20:
21: public class WorkflowComponentIdentifyUpdatesContext {
22:
23: private SecurityAudit sa = null;
24:
25: //private boolean notNew = false;
26:
27: protected WorkflowComponentIdentifyUpdatesContext(SecurityAudit inSa) {
28: this .sa = inSa;
29: //this.notNew = true;
30: }
31:
32: public final static WorkflowComponentIdentifyUpdatesContext newInstance(
33: SecurityAudit inSa) {
34:
35: return new WorkflowComponentIdentifyUpdatesContext(inSa);
36: }
37:
38: public SecurityAudit getSecurityAudit() {
39: return this .sa;
40: }
41:
42: //public void setNotNew(boolean inNotNew) {
43: // this.notNew = inNotNew;
44: //}
45:
46: //public boolean isNotNew() {
47: // return this.notNew;
48: //}
49: }
|