All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quamto.jira.api.base.BaseRESTController Maven / Gradle / Ivy

Go to download

Library that contains the class base to support functionalities in the JIRA Plugins

The newest version!
package com.quamto.jira.api.base;

import com.quamto.jira.base.BaseController;

/**
 * Class that contains the base methods for the REST controllers classes
 * 
 * @author jholguin
 * @since 11/02/2016
 *
 */
public abstract class BaseRESTController extends BaseController {

	public BaseRESTController(Class subClass) {
		super(subClass);
	}
	
	public BaseRESTController(String subClassName) {
		super(subClassName);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy