mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-08-01 20:26:02 +08:00
* @W-21623314 Adding Apex skill and Apex testing skill * @W-21623314 Adding Apex skill and Apex testing skill * @W-21623314 Adding Apex skill and Apex testing skill * @W-21623314 Adding Apex skill and Apex testing skill * @W-21623314 Adding Apex skill and Apex testing skill * @W-21623314 Adding Apex skill and Apex testing skill
26 lines
795 B
OpenEdge ABL
26 lines
795 B
OpenEdge ABL
/**
|
|
* Interface for {describe the capability or contract this interface defines}.
|
|
* 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} {
|
|
|
|
/**
|
|
* {Describe what this method should do}
|
|
* @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);
|
|
}
|