Files
spring-soap/spring-boot-modules/spring-boot-groovy/src/main/groovy/com/baeldung/springgroovyconfig/NotificationService.groovy
Palaniappan Arunachalam 3ee97b9426 BAEL-359: Introduction to Spring Groovy Configuration (#12864)
* BAEL-359: Introduction to Spring Groovy Configuration

* BAEL-359: Removed unused import

* BAEL-359: Moved groovy files under src/main/groovy

* BAEL-359: Upgraded Groovy version to 3.0.13
2022-10-31 09:48:31 +05:30

8 lines
107 B
Groovy

package com.baeldung.springgroovyconfig;
interface NotificationService {
String getMessage();
}