Examples of SliceResource


Examples of com.cognifide.slice.mapper.annotation.SliceResource

    MapperStrategy cachedMapperStrategy = getStrategyFromCache(type);
    if (cachedMapperStrategy != null) {
      return cachedMapperStrategy;
    }

    SliceResource sliceResource = type.getAnnotation(SliceResource.class);
    if (sliceResource != null) {
      final MappingStrategy mappingStrategy = sliceResource.value();
      MapperStrategy mapperStrategy = getStrategy(mappingStrategy, defaultStrategy);
      putStrategyIntoCache(type, mapperStrategy);
      return mapperStrategy;
    }
View Full Code Here

Examples of com.cognifide.slice.mapper.annotation.SliceResource

   * @param type
   * @return
   */
  public MapperStrategy getMapperStrategy(Class<?> type) {
    MapperStrategy defaultStrategy = annotatedFieldMapperStrategy;
    SliceResource sliceResource = type.getAnnotation(SliceResource.class);
    if (sliceResource != null) {
      final MappingStrategy mappingStrategy = sliceResource.value();
      return getStrategy(mappingStrategy, defaultStrategy);
    }
    return defaultStrategy;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.