Package com.dtolabs.rundeck.plugins.scm
Interface ScmOperationContext
-
public interface ScmOperationContext
Context for scm import/export actions, including authorization info and storage tree access
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.dtolabs.rundeck.core.authorization.UserAndRolesAuthContext
getAuthContext()
java.lang.String
getFrameworkProject()
Get the framework project namejava.lang.String
getJobId()
ID of a jobStorageTree
getStorageTree()
ScmUserInfo
getUserInfo()
-
-
-
Method Detail
-
getFrameworkProject
java.lang.String getFrameworkProject()
Get the framework project name- Returns:
- project name
-
getJobId
java.lang.String getJobId()
ID of a job- Returns:
- Job ID, or null
-
getAuthContext
com.dtolabs.rundeck.core.authorization.UserAndRolesAuthContext getAuthContext()
- Returns:
- the authorization context
-
getStorageTree
StorageTree getStorageTree()
- Returns:
- the storage service
-
getUserInfo
ScmUserInfo getUserInfo()
- Returns:
- username
-
-