2017-09-03 00:56:40 -07:00
|
|
|
package com.baeldung.services;
|
|
|
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
2019-08-27 06:43:00 +05:30
|
|
|
import com.baeldung.requestresponsebody.LoginForm;
|
|
|
|
|
2017-09-03 00:56:40 -07:00
|
|
|
@Service
|
|
|
|
public class ExampleService {
|
|
|
|
|
|
|
|
public boolean fakeAuthenticate(LoginForm lf) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|