colesico.framework.rpc.teleapi.BasicEnvelope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colesico-rpc Show documentation
Show all versions of colesico-rpc Show documentation
Colesico framework Remote Procedure Call for Services
The newest version!
package colesico.framework.rpc.teleapi;
/**
* Basic rpc request and response extension
* Used to provide ability to pass principal and profile objects
*/
public interface BasicEnvelope {
/**
* Serialized principal
*/
byte[] getPrincipal();
void setPrincipal(byte[] principal);
/**
* Serialized profile
*/
byte[] getProfile();
void setProfile(byte[] profile);
}