Uses of Class
org.gitlab4j.api.models.SystemHook
Packages that use SystemHook
-
Uses of SystemHook in org.gitlab4j.api
Methods in org.gitlab4j.api that return SystemHookModifier and TypeMethodDescriptionSystemHooksApi.addSystemHook(String url, String token, Boolean pushEvents, Boolean tagPushEvents, Boolean enableSslVerification) Add a new system hook.SystemHooksApi.addSystemHook(String url, String token, SystemHook systemHook) Add a new system hook.Methods in org.gitlab4j.api that return types with arguments of type SystemHookModifier and TypeMethodDescriptionSystemHooksApi.getSystemHooks()Get a list of all system hooks.SystemHooksApi.getSystemHooks(int itemsPerPage) Get a Pager of all system hooks.SystemHooksApi.getSystemHooks(int page, int perPage) Get a list of all system hooks using the specified page and per page settings.SystemHooksApi.getSystemHookStream()Get a Stream of all system hooks.Methods in org.gitlab4j.api with parameters of type SystemHookModifier and TypeMethodDescriptionSystemHooksApi.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 SystemHookModifier and TypeMethodDescriptionSystemHook.withCreatedAt(Date createdAt) SystemHook.withEnableSslVerification(Boolean enableSslVerification) SystemHook.withMergeRequestsEvents(Boolean mergeRequestsEvents) SystemHook.withPushEvents(Boolean pushEvents) SystemHook.withRepositoryUpdateEvents(Boolean repositoryUpdateEvents) SystemHook.withTagPushEvents(Boolean tagPushEvents)