com.clover.remote.client.messages.MessageFromActivity 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 from a custom Activity
*/
@SuppressWarnings(value="unused")
public class MessageFromActivity extends ActivityMessage {
/**
* Constructor
*
* @param action the custom activity action
* @param payload the custom activity payload
*/
public MessageFromActivity(String action, String payload) {
super(action, payload);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy