* 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
13 lines
246 B
Java
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);
|
|
}
|
|
|
|
} |