Uses of Class
org.miaixz.bus.gitlab.models.SystemHook
Packages that use SystemHook
-
Uses of SystemHook in org.miaixz.bus.gitlab
Methods in org.miaixz.bus.gitlab 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.SystemHooksApi.getSystemHook(Long hookId) Get a list of all system hooks.SystemHooksApi.updateSystemHook(SystemHook systemHook, String token) Add a new system hook.Methods in org.miaixz.bus.gitlab 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.miaixz.bus.gitlab 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.SystemHooksApi.updateSystemHook(SystemHook systemHook, String token) Add a new system hook. -
Uses of SystemHook in org.miaixz.bus.gitlab.models
Methods in org.miaixz.bus.gitlab.models that return SystemHookModifier and TypeMethodDescriptionSystemHook.withCreatedAt(Date createdAt) SystemHook.withDescription(String description) SystemHook.withEnableSslVerification(Boolean enableSslVerification) SystemHook.withMergeRequestsEvents(Boolean mergeRequestsEvents) SystemHook.withPushEvents(Boolean pushEvents) SystemHook.withRepositoryUpdateEvents(Boolean repositoryUpdateEvents) SystemHook.withTagPushEvents(Boolean tagPushEvents)