
com.xcase.box.impl.simple.transputs.LogoutRequestImpl Maven / Gradle / Ivy
/**
* Copyright 2016 Xcase All rights reserved.
*/
package com.xcase.box.impl.simple.transputs;
import com.xcase.box.constant.BoxConstant;
import com.xcase.box.transputs.LogoutRequest;
/**
* @author martin
*
*/
public class LogoutRequestImpl extends BoxRequestImpl implements LogoutRequest {
/**
* auth token.
*/
private String authToken;
/**
* client id.
*/
private String clientId;
/**
* client secret.
*/
private String clientSecret;
/**
* @return the authToken
*/
public String getAuthToken() {
return this.authToken;
}
/**
* @param authToken the authToken to set
*/
public void setAuthToken(String authToken) {
this.authToken = authToken;
}
/**
* @return the clientId
*/
public String getClientId() {
return this.clientId;
}
/**
* @param clientId the clientId to set
*/
public void setClientId(String clientId) {
this.clientId = clientId;
}
/**
* @return the clientSecret
*/
public String getClientSecret() {
return this.clientSecret;
}
/**
* @param clientSecret the clientSecret to set
*/
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
/**
* @return action name
*/
public String getActionName() {
return BoxConstant.ACTION_NAME_LOGOUT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy