Class WebHook
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.repository.WebHook
-
- All Implemented Interfaces:
ErrorsHolder
public abstract class WebHook extends Object implements ErrorsHolder
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classWebHook.EventType
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract booleanactive()abstract WebHookConfigurationconfiguration()static WebHookcreate(String id, String name, long createdDate, long updatedDate, List<WebHook.EventType> events, WebHookConfiguration configuration, String url, boolean active, List<Error> errors)abstract longcreatedDate()abstract List<WebHook.EventType>events()abstract Stringid()abstract Stringname()abstract longupdatedDate()abstract Stringurl()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.cdancy.bitbucket.rest.domain.common.ErrorsHolder
errors
-
-
-
-
Method Detail
-
id
@Nullable public abstract String id()
-
name
@Nullable public abstract String name()
-
createdDate
public abstract long createdDate()
-
updatedDate
public abstract long updatedDate()
-
events
@Nullable public abstract List<WebHook.EventType> events()
-
configuration
@Nullable public abstract WebHookConfiguration configuration()
-
url
@Nullable public abstract String url()
-
active
public abstract boolean active()
-
create
public static WebHook create(String id, String name, long createdDate, long updatedDate, @Nullable List<WebHook.EventType> events, WebHookConfiguration configuration, String url, boolean active, @Nullable List<Error> errors)
-
-