afv-library/skills/generating-apex/assets/interface.cls

34 lines
1.0 KiB
OpenEdge ABL

/**
<<<<<<< Updated upstream
* @description Interface for {describe the capability or contract this interface defines}.
=======
* Interface for {describe the capability or contract this interface defines}.
>>>>>>> Stashed changes
* Implement this interface to provide {describe what implementations do}.
* @author Generated by Apex Class Writer Skill
*
* @example
* public class EmailNotificationService implements {InterfaceName} {
* public void execute(Map<String, Object> params) {
* // Implementation
* }
* }
*/
public interface {InterfaceName} {
/**
<<<<<<< Updated upstream
* @description {Describe what this method should do}
=======
* {Describe what this method should do}
>>>>>>> Stashed changes
* @param params {Describe the parameter}
* @return {Describe the return value}
*/
// TODO: Define interface methods
// Example:
// void execute(Map<String, Object> params);
// Boolean isEligible(SObject record);
// List<SObject> process(List<SObject> records);
}