comparison ssdt-jira-plugins-v2/plugins/src/main/java/org/nwoca/ssdt/jira/IsTestingUserConditionFactory.java @ 0:92d945347fc0

V2 of the SSDT JIRA Plugins. Uses new Maven 2 based project. Created for JIRA 3.12.
author smith
date Tue, 20 May 2008 17:11:35 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:92d945347fc0
1 /*
2 * IsTestingUserConditionFactory.java
3 *
4 * Created on May 13, 2007, 7:07 PM
5 *
6 * To change this template, choose Tools | Template Manager
7 * and open the template in the editor.
8 */
9
10 package org.nwoca.ssdt.jira;
11 import java.util.Map;
12
13 import com.atlassian.jira.plugin.workflow.AbstractWorkflowPluginFactory;
14 import com.atlassian.jira.plugin.workflow.WorkflowPluginConditionFactory;
15 import com.atlassian.jira.util.map.EasyMap;
16 import com.opensymphony.workflow.loader.AbstractDescriptor;
17
18
19 /**
20 *
21 * @author SMITH
22 */
23 public class IsTestingUserConditionFactory extends AbstractWorkflowPluginFactory
24 implements WorkflowPluginConditionFactory {
25
26 protected void getVelocityParamsForEdit(Map arg0, AbstractDescriptor arg1) {
27 }
28
29 protected void getVelocityParamsForInput(Map arg0) {
30 }
31
32 protected void getVelocityParamsForView(Map arg0, AbstractDescriptor arg1) {
33 }
34
35 public Map getDescriptorParams(Map arg0) {
36 return EasyMap.build();
37 }
38
39
40 }