com.aliyun.drc.client.impl.TokenResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
The core java client for accessing Data Transmission Service
package com.aliyun.drc.client.impl;
public class TokenResp extends CmResp
{
private String token;
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
}