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

com.clover.remote.client.messages.MessageToActivity Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
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