Package org.gitlab4j.api.systemhooks
Class AbstractSystemHookEvent
- java.lang.Object
-
- org.gitlab4j.api.systemhooks.AbstractSystemHookEvent
-
- All Implemented Interfaces:
SystemHookEvent
- Direct Known Subclasses:
GroupMemberSystemHookEvent
,GroupSystemHookEvent
,KeySystemHookEvent
,ProjectSystemHookEvent
,RepositorySystemHookEvent
,TeamMemberSystemHookEvent
,UserSystemHookEvent
public abstract class AbstractSystemHookEvent extends Object implements SystemHookEvent
-
-
Constructor Summary
Constructors Constructor Description AbstractSystemHookEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getRequestQueryString()
String
getRequestUrl()
void
setRequestQueryString(String requestQuesryString)
void
setRequestUrl(String requestUrl)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.gitlab4j.api.systemhooks.SystemHookEvent
getEventName
-
-
-
-
Method Detail
-
setRequestUrl
public void setRequestUrl(String requestUrl)
- Specified by:
setRequestUrl
in interfaceSystemHookEvent
-
getRequestUrl
public String getRequestUrl()
- Specified by:
getRequestUrl
in interfaceSystemHookEvent
-
setRequestQueryString
public void setRequestQueryString(String requestQuesryString)
- Specified by:
setRequestQueryString
in interfaceSystemHookEvent
-
getRequestQueryString
public String getRequestQueryString()
- Specified by:
getRequestQueryString
in interfaceSystemHookEvent
-
-