com.mozu.api.contracts.adminuser.DeveloperAdminUserAuthTicket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
/**
* This code was auto-generated by a Codezu.
*
* Changes to this file may cause incorrect behavior and will be lost if
* the code is regenerated.
*/
package com.mozu.api.contracts.adminuser;
import java.util.List;
import java.util.HashMap;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.joda.time.DateTime;
import java.io.IOException;
import java.lang.ClassNotFoundException;
import com.mozu.api.contracts.adminuser.DeveloperAccount;
import com.mozu.api.contracts.core.UserProfile;
/**
* Properties of the authentication ticket to be used in developer account claims with the API.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class DeveloperAdminUserAuthTicket implements Serializable
{
// Default Serial Version UID
private static final long serialVersionUID = 1L;
protected String accessToken;
public String getAccessToken() {
return this.accessToken;
}
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
protected DateTime accessTokenExpiration;
public DateTime getAccessTokenExpiration() {
return this.accessTokenExpiration;
}
public void setAccessTokenExpiration(DateTime accessTokenExpiration) {
this.accessTokenExpiration = accessTokenExpiration;
}
protected DateTime createdOn;
public DateTime getCreatedOn() {
return this.createdOn;
}
public void setCreatedOn(DateTime createdOn) {
this.createdOn = createdOn;
}
protected List grantedBehaviors;
public List getGrantedBehaviors() {
return this.grantedBehaviors;
}
public void setGrantedBehaviors(List grantedBehaviors) {
this.grantedBehaviors = grantedBehaviors;
}
protected String jwtAccessToken;
public String getJwtAccessToken() {
return this.jwtAccessToken;
}
public void setJwtAccessToken(String jwtAccessToken) {
this.jwtAccessToken = jwtAccessToken;
}
protected String refreshToken;
public String getRefreshToken() {
return this.refreshToken;
}
public void setRefreshToken(String refreshToken) {
this.refreshToken = refreshToken;
}
protected DateTime refreshTokenExpiration;
public DateTime getRefreshTokenExpiration() {
return this.refreshTokenExpiration;
}
public void setRefreshTokenExpiration(DateTime refreshTokenExpiration) {
this.refreshTokenExpiration = refreshTokenExpiration;
}
protected DeveloperAccount account;
public DeveloperAccount getAccount() {
return this.account;
}
public void setAccount(DeveloperAccount account) {
this.account = account;
}
protected List availableAccounts;
public List getAvailableAccounts() {
return this.availableAccounts;
}
public void setAvailableAccounts(List availableAccounts) {
this.availableAccounts = availableAccounts;
}
protected UserProfile user;
public UserProfile getUser() {
return this.user;
}
public void setUser(UserProfile user) {
this.user = user;
}
}