Package org.exoplatform.push.domain
Class Device
- java.lang.Object
-
- org.exoplatform.push.domain.Device
-
@Entity(name="PushNotifsDevice") public class Device extends Object
-
-
Constructor Summary
Constructors Constructor Description Device()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetId()DategetRegistrationDate()StringgetToken()StringgetType()StringgetUsername()voidsetId(long id)voidsetRegistrationDate(Date registrationDate)voidsetToken(String token)voidsetType(String type)voidsetUsername(String username)
-
-
-
Method Detail
-
getId
public long getId()
-
setId
public void setId(long id)
-
getToken
public String getToken()
-
setToken
public void setToken(String token)
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getRegistrationDate
public Date getRegistrationDate()
-
setRegistrationDate
public void setRegistrationDate(Date registrationDate)
-
-