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

com.github.bordertech.restfriends.envelope.MetaEnvelope Maven / Gradle / Ivy

There is a newer version: 2.0.0-beta-1
Show newest version
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