com.almworks.jira.structure.api.job.SystemStructureJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
The newest version!
package com.almworks.jira.structure.api.job;
import com.atlassian.jira.user.ApplicationUser;
/**
* @author Igor Sereda
*/
public abstract class SystemStructureJob extends AbstractStructureJob {
public ApplicationUser getUser() {
return null;
}
}