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

com.nortal.jroad.model.XTeeMessage Maven / Gradle / Ivy

package com.nortal.jroad.model;

import java.util.List;

/**
 * Abstraction of a request or response message. Contains the header, body and attachments of a message.
 * 
 * @author Dmitri Danilkin
 * @param  type of body element
 */
// Should switch to X-road implementation
@Deprecated
public interface XTeeMessage {
  XTeeHeader getHeader();

  T getContent();

  void setContent(T content);

  List getAttachments();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy