Package org.redisson.liveobject.resolver
Class RequiredIdResolver
- java.lang.Object
-
- org.redisson.liveobject.resolver.RequiredIdResolver
-
- All Implemented Interfaces:
RIdResolver<Object>
public class RequiredIdResolver extends Object implements RIdResolver<Object>
- Author:
- Nikita Koksharov
-
-
Field Summary
Fields Modifier and Type Field Description static RequiredIdResolverINSTANCE
-
Constructor Summary
Constructors Constructor Description RequiredIdResolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectresolve(Class<?> cls, RId annotation, String idFieldName, CommandAsyncExecutor commandAsyncExecutor)RLiveObjectService instantiate the class and invokes this method to get a value used as the value for the field with RId annotation.
-
-
-
Field Detail
-
INSTANCE
public static final RequiredIdResolver INSTANCE
-
-
Method Detail
-
resolve
public Object resolve(Class<?> cls, RId annotation, String idFieldName, CommandAsyncExecutor commandAsyncExecutor)
Description copied from interface:RIdResolverRLiveObjectService instantiate the class and invokes this method to get a value used as the value for the field with RId annotation.- Specified by:
resolvein interfaceRIdResolver<Object>- Parameters:
cls- the class of the LiveObject.annotation- the RId annotation used in the class.idFieldName- field idcommandAsyncExecutor- instance- Returns:
- resolved RId field value.
-
-