/** * Most of the code in the Qalingo project is copyrighted Hoteia and licensed * under the Apache License Version 2.0 (release version 0.8.0) * http://www.apache.org/licenses/LICENSE-2.0 * * Copyright (c) Hoteia, 2012-2014 * http://www.hoteia.com - http://twitter.com/hoteia - contact@hoteia.com * */ package org.hoteia.qalingo.core.pojo.customer; import org.hoteia.qalingo.core.domain.enumtype.OAuthType; import java.util.Date; public class CustomerTokenPojo { private Long id; private int version; private String oauthToken; private String userId; private String expires; private OAuthType type; private Date dateCreate; private Date dateUpdate; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public int getVersion() { return version; } public void setVersion(int version) { this.version = version; } public String getOauthToken() { return oauthToken; } public void setOauthToken(String oauthToken) { this.oauthToken = oauthToken; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getExpires() { return expires; } public void setExpires(String expires) { this.expires = expires; } public OAuthType getType() { return type; } public void setType(OAuthType type) { this.type = type; } public Date getDateCreate() { return dateCreate; } public void setDateCreate(Date dateCreate) { this.dateCreate = dateCreate; } public Date getDateUpdate() { return dateUpdate; } public void setDateUpdate(Date dateUpdate) { this.dateUpdate = dateUpdate; } }