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

colesico.framework.rpc.teleapi.BasicEnvelope Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy