24 lines
715 B
Plaintext
24 lines
715 B
Plaintext
## --------------------------------------------------
|
|
#if ( !($entity.hasTag("BaseModel"))) )
|
|
#cancel("Not a Base Model")
|
|
#end
|
|
## --------------------------------------------------
|
|
/*
|
|
* Java command processor interface for entity "${entity.name}"
|
|
* Created on $now.date ( $now.time )
|
|
* Generated by $generator.name ( version $generator.version )
|
|
*/
|
|
package ${target.javaPackageFromFolder("${component}/${SRC}")};
|
|
|
|
/**
|
|
* Command processor interface for entity "${entity.name}"
|
|
*
|
|
* @author Telosys Tools Generator
|
|
*
|
|
*/
|
|
public interface Command${commandType}${entity.name}Processor {
|
|
|
|
Command processCommand${commandType}${entity.name}(Command${commandType}${entity.name} request) throws Exception;
|
|
|
|
}
|