
com.trimble.id.RequestPayload Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trimble-id Show documentation
Show all versions of trimble-id Show documentation
Trimble Identity OAuth Client library holds the client classes that are used for communicating with Trimble Identity Service
The newest version!
package com.trimble.id;
import java.util.HashMap;
import java.util.Map;
public class RequestPayload {
private String contentType;
private Map formPayload = new HashMap();
private Object payload;
public RequestPayload(String contentType, Map formPayload) {
super();
this.contentType = contentType;
this.formPayload = formPayload;
}
public RequestPayload(String contentType, Object payload) {
super();
this.contentType = contentType;
this.payload = payload;
}
public Map getFormPayload() {
return formPayload;
}
public Object getPayload() {
return payload;
}
public String getContentType() {
return contentType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy