All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jbpm.process.longrest.util.Json Maven / Gradle / Ivy

/*
 * Copyright 2021 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.jbpm.process.longrest.util;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;

import org.apache.commons.lang3.StringEscapeUtils;

public class Json {

    public static  T escape(T o) {
        if (o == null) {
            return null;
        } else if (o instanceof String) {
            return (T) StringEscapeUtils.escapeJson((String) o);
        } else if (o instanceof Map) {
            Map m = (Map) o;
            Map result = new HashMap();
            for (Map.Entry e : m.entrySet()) {
                result.put(escape(e.getKey()), escape(e.getValue()));
            }
            return (T) result;
        } else if (o instanceof List) {
            return (T) ((List) o).stream()
                    .map(e -> escape(e))
                    .collect(Collectors.toList());
        } else if (o instanceof Set) {
            return (T) ((Set) o).stream()
                    .map(e -> escape(e))
                    .collect(Collectors.toSet());
        } else {
            return o;
        }
    }

    public static  T unescape(T o) {
        if (o == null) {
            return null;
        } else if (o instanceof String) {
            return (T) StringEscapeUtils.unescapeJson((String) o);
        } else if (o instanceof Map) {
            Map m = (Map) o;
            Map result = new HashMap();
            for (Map.Entry e : m.entrySet()) {
                result.put(unescape(e.getKey()), unescape(e.getValue()));
            }
            return (T) result;
        } else if (o instanceof List) {
            return (T) ((List) o).stream()
                    .map(e -> unescape(e))
                    .collect(Collectors.toList());
        } else if (o instanceof Set) {
            return (T) ((Set) o).stream()
                    .map(e -> unescape(e))
                    .collect(Collectors.toSet());
        } else {
            return o;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy