Package org.infinispan.query
Annotation Type Transformable
-
@Target(TYPE) @Retention(RUNTIME) public @interface Transformable
Annotate objects to convert them to keys that Infinispan can index. You need to annotate custom types only.- Since:
- 4.0
- Author:
- Manik Surtani
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description Class<? extends Transformer>
transformer
TheTransformer
to use.
-
-
-
Element Detail
-
transformer
Class<? extends Transformer> transformer
TheTransformer
to use. Please specify your custom transformer instead of relying on the default one which is slow.- Default:
- org.infinispan.query.impl.DefaultTransformer.class
-
-