com.github.houbbbbb.sso.entity.AppInfoDTO Maven / Gradle / Ivy
The newest version!
package com.github.houbbbbb.sso.entity;
import lombok.Getter;
import lombok.ToString;
/**
* @author: hbw
* @date: 2020/7/17
**/
@Getter
@ToString
public class AppInfoDTO {
private String url;
private String appName;
private String appType;
private String serviceId;
private String sessionId;
public AppInfoDTO setSessionId(String sessionId) {
this.sessionId = sessionId;
return this;
}
public AppInfoDTO setUrl(String url) {
this.url = url;
return this;
}
public AppInfoDTO setAppName(String appName) {
this.appName = appName;
return this;
}
public AppInfoDTO setAppType(String appType) {
this.appType = appType;
return this;
}
public AppInfoDTO setServiceId(String serviceId) {
this.serviceId = serviceId;
return this;
}
private AppInfoDTO () {}
public static AppInfoDTO create () {
return new AppInfoDTO();
}
}