Uses of Class
org.gitlab4j.api.models.SystemHook
| Package | Description |
|---|---|
| org.gitlab4j.api | |
| org.gitlab4j.api.models |
-
Uses of SystemHook in org.gitlab4j.api
Methods in org.gitlab4j.api that return SystemHook Modifier and Type Method Description SystemHookSystemHooksApi. addSystemHook(String url, String token, Boolean pushEvents, Boolean tagPushEvents, Boolean enableSslVerification)Add a new system hook.SystemHookSystemHooksApi. addSystemHook(String url, String token, SystemHook systemHook)Add a new system hook.Methods in org.gitlab4j.api that return types with arguments of type SystemHook Modifier and Type Method Description List<SystemHook>SystemHooksApi. getSystemHooks()Get a list of all system hooks.Pager<SystemHook>SystemHooksApi. getSystemHooks(int itemsPerPage)Get a Pager of all system hooks.List<SystemHook>SystemHooksApi. getSystemHooks(int page, int perPage)Get a list of all system hooks using the specified page and per page settings.Stream<SystemHook>SystemHooksApi. getSystemHookStream()Get a Stream of all system hooks.Methods in org.gitlab4j.api with parameters of type SystemHook Modifier and Type Method Description SystemHookSystemHooksApi. addSystemHook(String url, String token, SystemHook systemHook)Add a new system hook.voidSystemHooksApi. deleteSystemHook(SystemHook hook)Deletes a system hook.voidSystemHooksApi. testSystemHook(SystemHook hook)Test a system hook. -
Uses of SystemHook in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return SystemHook Modifier and Type Method Description SystemHookSystemHook. withCreatedAt(Date createdAt)SystemHookSystemHook. withEnableSslVerification(Boolean enableSslVerification)SystemHookSystemHook. withId(Integer id)SystemHookSystemHook. withMergeRequestsEvents(Boolean mergeRequestsEvents)SystemHookSystemHook. withPushEvents(Boolean pushEvents)SystemHookSystemHook. withRepositoryUpdateEvents(Boolean repositoryUpdateEvents)SystemHookSystemHook. withTagPushEvents(Boolean tagPushEvents)SystemHookSystemHook. withUrl(String url)