mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-08-07 08:04:28 +08:00
23 lines
656 B
OpenEdge ABL
23 lines
656 B
OpenEdge ABL
/**
|
|
* Interface for {describe the capability or contract this interface defines}.
|
|
* Implement this interface to provide {describe what implementations do}.
|
|
*
|
|
* @example
|
|
* public class EmailNotificationService implements {InterfaceName} {
|
|
* public void execute(Map<String, Object> params) {
|
|
* // Implementation
|
|
* }
|
|
* }
|
|
*/
|
|
public interface {InterfaceName} {
|
|
|
|
/**
|
|
* {Describe what this method should do}
|
|
* @param records {Describe the parameter}
|
|
* @return {Describe the return value}
|
|
*/
|
|
List<SObject> process(List<SObject> records);
|
|
|
|
// TODO: Add additional interface methods as needed
|
|
}
|