Package com.mooltiverse.oss.nyx.services
Interface GitSession
-
- All Known Implementing Classes:
GitHubSession
,GitLabSession
public interface GitSession
An (authenticated) session for a remote Git service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GitUser
getAuthenticatedUser()
Returns the authenticated user associated with this session.GitService
getService()
Returns the service instance backing this session.
-
-
-
Method Detail
-
getService
GitService getService()
Returns the service instance backing this session.- Returns:
- the service instance backing this session.
-
getAuthenticatedUser
GitUser getAuthenticatedUser()
Returns the authenticated user associated with this session.- Returns:
- the authenticated user associated with this session.
-
-