io.hcxprotocol.dto.JWERequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hcx-integrator-sdk Show documentation
Show all versions of hcx-integrator-sdk Show documentation
The SDK for HCX Participant System to help in integrating with HCX Gateway easily.
package io.hcxprotocol.dto;
import java.util.Map;
/**
* This is to handle jwe payload specific validations.
*/
public class JWERequest extends BaseRequest {
public JWERequest(Map payload) throws Exception {
super(payload);
}
}