com.posadskiy.restsecurity.rest.RequestWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-security Show documentation
Show all versions of rest-security Show documentation
Open Source library for security REST methods
package com.posadskiy.restsecurity.rest;
public class RequestWrapper {
private Object data;
private String userId;
private String sessionId;
public RequestWrapper data(Object data) {
this.data = data;
return this;
}
public RequestWrapper userId(String userId) {
this.userId = userId;
return this;
}
public RequestWrapper sessionId(String sessionId) {
this.sessionId = sessionId;
return this;
}
public String getSessionId() {
return sessionId;
}
public String getUserId() {
return userId;
}
public Object getData() {
return data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy