Package jetbrains.vcs.api.remote
Interface VcsSessionManager
-
public interface VcsSessionManager
Created 08.11.12 18:06- Author:
- Eugene Petrenko (eugene.petrenko@jetbrains.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VcsSession
findSession(String sessionId)
VcsSession
getOrCreateSession(VcsSettings repo)
boolean
hasSession(VcsSettings repo)
VcsSession
registerSession(String sessionId, VcsSettings repo)
void
removeRepositorySession(VcsSettings repo)
-
-
-
Method Detail
-
getOrCreateSession
@NotNull VcsSession getOrCreateSession(@NotNull VcsSettings repo)
-
registerSession
@NotNull VcsSession registerSession(@NotNull String sessionId, @NotNull VcsSettings repo)
-
findSession
@Nullable VcsSession findSession(@NotNull String sessionId)
-
removeRepositorySession
void removeRepositorySession(@NotNull VcsSettings repo)
-
hasSession
boolean hasSession(@NotNull VcsSettings repo)
-
-