[BAEL-14088] - Moved code for RequestBody and ResponseBody annotations article

This commit is contained in:
amit2103
2019-04-13 23:16:33 +05:30
parent 9df90567d4
commit 6b0a96291e
9 changed files with 26 additions and 23 deletions

View File

@@ -0,0 +1,12 @@
package com.baeldung.services;
import com.baeldung.transfer.LoginForm;
import org.springframework.stereotype.Service;
@Service
public class ExampleService {
public boolean fakeAuthenticate(LoginForm lf) {
return true;
}
}