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

com.github.edgar615.util.event.EventAction Maven / Gradle / Ivy

There is a newer version: 1.0.11
Show newest version
package com.github.edgar615.util.event;

/**
 * 消息活动,用于区分不同的消息类型.
 *
 * @author Edgar  Date 2017/3/8
 */
public interface EventAction {

  /**
   * Unknown action.
   */
  String UNKNOWN = "unknown";

  /**
   * @return action名称
   */
  String name();

  /**
   * @return 资源标识
   */
  String resource();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy