[jbpm-commits] JBoss JBPM SVN: r5621 - projects/jopr-integration/trunk/src/main/java/org/rhq/plugins/jbpm4/connector.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Sep 9 01:13:44 EDT 2009


Author: jim.ma
Date: 2009-09-09 01:13:44 -0400 (Wed, 09 Sep 2009)
New Revision: 5621

Added:
   projects/jopr-integration/trunk/src/main/java/org/rhq/plugins/jbpm4/connector/TaskQueryCondition.java
Log:
Added the missing file for last commit

Added: projects/jopr-integration/trunk/src/main/java/org/rhq/plugins/jbpm4/connector/TaskQueryCondition.java
===================================================================
--- projects/jopr-integration/trunk/src/main/java/org/rhq/plugins/jbpm4/connector/TaskQueryCondition.java	                        (rev 0)
+++ projects/jopr-integration/trunk/src/main/java/org/rhq/plugins/jbpm4/connector/TaskQueryCondition.java	2009-09-09 05:13:44 UTC (rev 5621)
@@ -0,0 +1,106 @@
+ /* JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and individual contributors as indicated
+ * by the import org.jbpm.api.history.HistoryTaskQuery;
+
+ at authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.rhq.plugins.jbpm4.connector;
+
+import org.jbpm.pvm.internal.query.Page;
+/**
+ * @author <a href mailto="ema at redhat.com">Jim Ma</a>
+ *
+ */
+
+public class TaskQueryCondition {
+
+	private String activityName = null;
+	private String candidate = null;
+	private String assignee = null;
+
+	private String processInstanceId = null;
+	private String definitionId = null;
+    private Boolean unassigneed = null;
+    private Boolean suspended = null;
+    private Page page = null;
+	
+	public String getActivityName() {
+		return activityName;
+	}
+	
+	public String getAssignee() {
+		return this.assignee;
+	}
+		
+	public String getCandidate() {
+		return this.candidate;
+	}
+	
+	public String getProcessInsatnceId() {
+		return processInstanceId;
+	}
+
+	public String getDefinitionId() {
+		return this.definitionId;
+	}
+	
+	public Boolean getUnAssigneed() {
+		return this.unassigneed;
+	}
+		
+	public Boolean getSuspended() {
+		return this.suspended;
+	}
+
+    public Page getPage() {
+    	return this.page;
+    }
+    
+	public void setActivityName(String activity) {
+		this.activityName  = activity;
+	}
+    
+	public void setAssignee(String assignee) {
+		this.assignee = assignee;
+	}
+    
+	public void setCandidate(String candidate) {
+		this.candidate = candidate;
+	}
+    
+	public void setProcessInstanceId(String processInstanceId) {
+		this.processInstanceId = processInstanceId;
+	}
+    
+	public void setDefinitionId(String defId) {
+		this.definitionId = defId;
+	}
+    
+	public void setUnAssigneed(boolean unassigneed) {
+		this.unassigneed = unassigneed;
+	}
+    
+	public void setSuspended(boolean suspended) {
+		this.suspended = suspended;
+	}
+    
+    public void setPage(Page page) {
+    	this.page = page;
+    }
+}



More information about the jbpm-commits mailing list