view 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
line wrap: on
line source
/*
 * IsTestingUserConditionFactory.java
 *
 * Created on May 13, 2007, 7:07 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package org.nwoca.ssdt.jira;
import java.util.Map;

import com.atlassian.jira.plugin.workflow.AbstractWorkflowPluginFactory;
import com.atlassian.jira.plugin.workflow.WorkflowPluginConditionFactory;
import com.atlassian.jira.util.map.EasyMap;
import com.opensymphony.workflow.loader.AbstractDescriptor;


/**
 *
 * @author SMITH
 */
public class IsTestingUserConditionFactory extends AbstractWorkflowPluginFactory
        implements WorkflowPluginConditionFactory {

	protected void getVelocityParamsForEdit(Map arg0, AbstractDescriptor arg1) {
	}

	protected void getVelocityParamsForInput(Map arg0) {
	}

	protected void getVelocityParamsForView(Map arg0, AbstractDescriptor arg1) {
	}

	public Map getDescriptorParams(Map arg0) {
		return EasyMap.build();
	}

    
}