com.github.bordertech.restfriends.envelope.MetaEnvelope Maven / Gradle / Ivy
package com.github.bordertech.restfriends.envelope;
import java.io.Serializable;
/**
* Response that holds meta data.
*
* Can be added to all other response envelopes when needed or used on its own.
*
*
* @param the meta data type
*/
public interface MetaEnvelope extends Envelope {
/**
* @return the response meta data
*/
T getMeta();
/**
*
* @param meta the response meta data
*/
void setMeta(T meta);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy