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

com.clover.remote.client.messages.MessageFromActivity 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 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