com.quamto.jira.api.base.BaseRESTController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugins-base Show documentation
Show all versions of plugins-base Show documentation
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