org.apache.cxf.jaxrs.json.basic.JsonMapObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-rt-rs-json-basic Show documentation
Show all versions of cxf-rt-rs-json-basic Show documentation
Apache CXF JAX-RS Extensions: JSON Basic
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.cxf.jaxrs.json.basic;
import java.io.Serializable;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import org.apache.cxf.helpers.CastUtils;
public class JsonMapObject implements Serializable {
private static final long serialVersionUID = 2620765136328623790L;
private final Map values;
private Map updateCount;
public JsonMapObject() {
this(new LinkedHashMap<>());
}
public JsonMapObject(Map values) {
this.values = values;
}
public void setProperty(String name, Object value) {
if (null != values.put(name, value instanceof JsonMapObject ? ((JsonMapObject)value).asMap() : value)) {
if (updateCount == null) {
updateCount = new HashMap<>();
}
updateCount.compute(name, (k, v) -> (v == null) ? 2 : v + 1);
}
}
public boolean containsProperty(String name) {
return values.containsKey(name);
}
public Object getProperty(String name) {
return values.get(name);
}
public Map getMapProperty(String name) {
Object value = getProperty(name);
if (value != null) {
return CastUtils.cast((Map, ?>)value);
}
return null;
}
public JsonMapObject getJsonMapProperty(String name) {
Map value = getMapProperty(name);
if (value != null) {
return new JsonMapObject(value);
}
return null;
}
public Map asMap() {
return values;
}
public Integer getIntegerProperty(String name) {
Number number = getNumberProperty(name, Integer::valueOf);
if (number != null) {
return number instanceof Integer ? (Integer) number : Integer.valueOf(number.intValue());
}
return null;
}
public Long getLongProperty(String name) {
Number number = getNumberProperty(name, Long::valueOf);
if (number != null) {
return number instanceof Long ? (Long) number : Long.valueOf(number.longValue());
}
return null;
}
private Number getNumberProperty(String name, Function converter) {
Object value = getProperty(name);
if (value != null) {
return value instanceof Number ? (Number) value : converter.apply(value.toString());
}
return null;
}
public Boolean getBooleanProperty(String name) {
Object value = getProperty(name);
if (value != null) {
return value instanceof Boolean ? (Boolean)value : Boolean.valueOf(value.toString());
}
return null;
}
public String getStringProperty(String name) {
Object value = getProperty(name);
if (value != null) {
return value.toString();
}
return null;
}
public List getListStringProperty(String name) {
Object value = getProperty(name);
if (value != null) {
return CastUtils.cast((List>)value);
}
return null;
}
public List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy