private CollectionWrapperStrategy getCollectionWrapperStrategy(ResourceConfig rc) {
Object propertyValue = rc.getProperty(PROPERTY_COLLECTION_WRAPPER_STRATEGY);
if (propertyValue == null) {
logger.info("Using default CollectionWrapperStrategy");
return new DefaultCollectionWrapperStrategy();
} else {
logger.info("Using {} as LinkInjector", propertyValue);
try {
return (CollectionWrapperStrategy) Class.forName((String) propertyValue).newInstance();
} catch (Exception e) {