/*
* JFolder, Copyright 2001-2006 Gary Steinmetz
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jfolder.workflow.model;
//base classes
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
//project specific classes
import org.jfolder.common.UnexpectedSystemException;
import org.jfolder.security.audit.SecurityAudit;
//other classes
public class WorkflowComponentIdentifyUpdatesContext {
private SecurityAudit sa = null;
//private boolean notNew = false;
protected WorkflowComponentIdentifyUpdatesContext(SecurityAudit inSa) {
this.sa = inSa;
//this.notNew = true;
}
public final static WorkflowComponentIdentifyUpdatesContext newInstance(
SecurityAudit inSa) {
return new WorkflowComponentIdentifyUpdatesContext(inSa);
}
public SecurityAudit getSecurityAudit() {
return this.sa;
}
//public void setNotNew(boolean inNotNew) {
// this.notNew = inNotNew;
//}
//public boolean isNotNew() {
// return this.notNew;
//}
}
|