in integrations/cxf-jettison/cxf-jettison-jaxrs/src/main/java/org/apache/aries/jax/rs/jaxb/json/activator/PropertyWrapper.java [29:39]
public void applyBoolean(String property, Consumer<Boolean> consumer) {
Object value = _properties.get(property);
if ((value != null) && (value instanceof Boolean)) {
consumer.accept((Boolean) value);
}
if ((value != null) && (value instanceof String)) {
consumer.accept(Boolean.parseBoolean((String) value));
}
}