Searched defs:convertToFalse (Results 1 - 1 of 1) sorted by relevance

/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/
H A DRestUtil.java484 public static RestResponse sendCreateRequest(String endpoint, Map<String, Object> attrs, List<String> skipAttrs, List<String> onlyUseAttrs, List<String> convertToFalse) { argument
487 attrs = convertNullValuesToFalse(attrs, convertToFalse);
495 public static RestResponse sendUpdateRequest(String endpoint, Map<String, Object> attrs, List<String> skipAttrs, List<String> onlyUseAttrs, List<String> convertToFalse) { argument
498 attrs = convertNullValuesToFalse(attrs, convertToFalse);
545 protected static Map<String, Object> convertNullValuesToFalse(Map<String, Object> attrs, List<String> convertToFalse) { argument
546 if (convertToFalse != null) {
552 if (convertToFalse.contains(key) && ((entry.getValue() == null) || "null".equals(entry.getValue()))) {

Completed in 18 milliseconds