Files
spring-boot-rest/spring-4/src/main/java/com/baeldung/flips/service/NewFlipService.java
Eric Goebelbecker b8d9a18626 BAEL-1554 (#3864)
* BAEL-1554 - Flips code

* BAEL-1554 - Flips code, round 2

* BAEL-1554 - Guide to Flips

* BAEL-1554 - update read me

* BAEL-1554 - rename "Thing" to "Foo"

* BAEL-1554 - rename module to spring-4
2018-03-21 15:43:53 +01:00

13 lines
246 B
Java

package com.baeldung.flips.service;
import com.baeldung.flips.model.Foo;
import org.springframework.stereotype.Service;
@Service
public class NewFlipService {
public Foo getNewFoo() {
return new Foo("Shiny New Foo!", 100);
}
}