Package org.gitlab4j.api.systemhooks
Class UserSystemHookEvent
- java.lang.Object
-
- org.gitlab4j.api.systemhooks.AbstractSystemHookEvent
-
- org.gitlab4j.api.systemhooks.UserSystemHookEvent
-
- All Implemented Interfaces:
SystemHookEvent
public class UserSystemHookEvent extends AbstractSystemHookEvent
-
-
Field Summary
Fields Modifier and Type Field Description static String
USER_CREATE_EVENT
static String
USER_DESTROY_EVENT
static String
USER_FAILED_LOGIN_EVENT
static String
USER_RENAME_EVENT
-
Constructor Summary
Constructors Constructor Description UserSystemHookEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getCreatedAt()
String
getEmail()
String
getEventName()
String
getName()
String
getOldUsername()
String
getState()
Date
getUpdatedAt()
Integer
getUserId()
String
getUsername()
void
setCreatedAt(Date createdAt)
void
setEmail(String email)
void
setEventName(String eventName)
void
setName(String name)
void
setOldUsername(String oldUsername)
void
setState(String state)
void
setUpdatedAt(Date updatedAt)
void
setUserId(Integer userId)
void
setUsername(String username)
String
toString()
-
Methods inherited from class org.gitlab4j.api.systemhooks.AbstractSystemHookEvent
getRequestQueryString, getRequestUrl, setRequestQueryString, setRequestUrl
-
-
-
-
Field Detail
-
USER_CREATE_EVENT
public static final String USER_CREATE_EVENT
- See Also:
- Constant Field Values
-
USER_DESTROY_EVENT
public static final String USER_DESTROY_EVENT
- See Also:
- Constant Field Values
-
USER_RENAME_EVENT
public static final String USER_RENAME_EVENT
- See Also:
- Constant Field Values
-
USER_FAILED_LOGIN_EVENT
public static final String USER_FAILED_LOGIN_EVENT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getEventName
public String getEventName()
-
setEventName
public void setEventName(String eventName)
-
getCreatedAt
public Date getCreatedAt()
-
setCreatedAt
public void setCreatedAt(Date createdAt)
-
getUpdatedAt
public Date getUpdatedAt()
-
setUpdatedAt
public void setUpdatedAt(Date updatedAt)
-
getEmail
public String getEmail()
-
setEmail
public void setEmail(String email)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getUserId
public Integer getUserId()
-
setUserId
public void setUserId(Integer userId)
-
getOldUsername
public String getOldUsername()
-
setOldUsername
public void setOldUsername(String oldUsername)
-
getState
public String getState()
-
setState
public void setState(String state)
-
-