All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.trimble.id.RequestPayload Maven / Gradle / Ivy

Go to download

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