InterfaceRulesClass.Annotations
|
Java, JavaScript, TypeScript, Python and Groovy |
ide.Java.InterfaceRulesClass.Annotations = …
This parameter can be used to add annotations to the generated interface rules module. Multiple annotations are also possible, separated by commas.
The following entry in the LFET.Project.ini-file:
ide.Java.InterfaceRulesClass.Annotations = javax.annotation.processing.Generated("LF-ET")
triggers generation of the following annotation:
import javax.annotation.Generated;
@Generated("LF-ET")
public class OnlineOrderPaymentOptions_RulesEngine
{
Enumerations can be used in an LFET.Project.yaml-file:
ide.Java:
Interface:
RulesClass:
Annotations:
- javax.annotation.processing.Generated("LF-ET")
- org.springframework.stereotype.Component
- lombok.RequiresArgsConstructor