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 SystemHook
SystemHooksApi. addSystemHook(String url, String token, Boolean pushEvents, Boolean tagPushEvents, Boolean enablSsslVerification)
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 void
SystemHooksApi. deleteSystemHook(SystemHook hook)
Deletes a system hook.void
SystemHooksApi. 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 SystemHook
SystemHook. withCreatedAt(Date createdAt)
SystemHook
SystemHook. withEnableSslVerification(Boolean enableSslVerification)
SystemHook
SystemHook. withId(Integer id)
SystemHook
SystemHook. withPushEvents(Boolean pushEvents)
SystemHook
SystemHook. withRepositoryUpdateEvents(Boolean repositoryUpdateEvents)
SystemHook
SystemHook. withTagPushEvents(Boolean tagPushEvents)
SystemHook
SystemHook. withUrl(String url)