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

ai.stapi.graphsystem.messaging.command.DynamicCommand Maven / Gradle / Ivy

package ai.stapi.graphsystem.messaging.command;

import ai.stapi.identity.UniqueIdentifier;
import java.util.Map;

public class DynamicCommand extends AbstractPayloadCommand {

  public static final String SERIALIZATION_TYPE_FIELD_NAME = "serializationType";
  public static final String TARGET_IDENTIFIER_FIELD_NAME = "targetIdentifier";

  private DynamicCommand() {
  }

  public DynamicCommand(
      UniqueIdentifier targetIdentifier,
      String serializationType,
      Map data
  ) {
    super(serializationType, targetIdentifier, data);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy