colesico.framework.rpc.codegen.generator.BasicExtension 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.codegen.generator;
import colesico.framework.rpc.teleapi.BasicEnvelope;
/**
* Basic envelop extension
* @see BasicEnvelope
*/
public class BasicExtension implements EnvelopeExtension {
@Override
public Class> getRequestExtension() {
return BasicEnvelope.class;
}
@Override
public Class> getResponseExtension() {
return BasicEnvelope.class;
}
}