Package org.infinispan.compat

Examples of org.infinispan.compat.TypeConverter


         interceptorChain.setFirstInChain(createInterceptor(new BatchingInterceptor(), BatchingInterceptor.class));
      } else {
         interceptorChain.setFirstInChain(createInterceptor(new InvocationContextInterceptor(), InvocationContextInterceptor.class));
      }

      TypeConverter typeConverter = configuration.dataContainer().typeConverter();
      if (typeConverter != null) {
         interceptorChain.appendInterceptor(createInterceptor(
               new TypeConverterInterceptor(typeConverter), TypeConverterInterceptor.class), false);
      }
View Full Code Here

TOP

Related Classes of org.infinispan.compat.TypeConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.