We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.spring.data.
Package com.vaadin.flow.spring.data
Interface GetService<T,ID>
All Known Implementing Classes:
public interface GetService<T,ID>
A service that can fetch the given type of object.
-
Method Summary
-
Method Details
-
get
Gets the object with the given id.
Parameters:
id
- the id of the objectReturns:
the object, or an empty optional if no object with the given id
-
exists
Checks if an object with the given id exists.
Parameters:
id
- the id of the objectReturns:
true
if the object exists,false
otherwise
-