All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.cinovo.cloudconductor.api.model.AuthToken Maven / Gradle / Ivy

There is a newer version: 3.12
Show newest version
package de.cinovo.cloudconductor.api.model;

import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeInfo.As;
import com.fasterxml.jackson.annotation.JsonTypeInfo.Id;

import java.util.Date;

/**
 * 
 * Copyright 2017 Cinovo AG
*
* * @author mweise * */ @JsonTypeInfo(include = As.PROPERTY, use = Id.CLASS) public class AuthToken { private String token; private Date creationDate; private Date revoked; /** * @return the token */ public String getToken() { return this.token; } /** * @param token the token to set */ public void setToken(String token) { this.token = token; } /** * @return the creationDate */ public Date getCreationDate() { return this.creationDate; } /** * @param creationDate the creationDate to set */ public void setCreationDate(Date creationDate) { this.creationDate = creationDate; } /** * @return the revoked */ public Date getRevoked() { return this.revoked; } /** * @param revoked the revoked to set */ public void setRevoked(Date revoked) { this.revoked = revoked; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy