com.clover.remote.client.messages.MessageToActivity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remote-pay-java-connector Show documentation
Show all versions of remote-pay-java-connector Show documentation
Clover Connector Java library
package com.clover.remote.client.messages;
/**
* Contains the message information sent to a custom Activity
*/
@SuppressWarnings(value="unused")
public class MessageToActivity extends ActivityMessage {
/**
* Constructor
*
* @param action the custom activity action
* @param payload the custom activity payload
*/
public MessageToActivity(String action, String payload) {
super(action, payload);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy