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

org.apache.juneau.internal.DelegateBeanMap Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
// ***************************************************************************************************************************
// * 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.juneau.internal;

import java.util.*;

import org.apache.juneau.*;

/**
 * Represents a wrapped {@link BeanMap} where property values can be overridden, removed, or reordered without
 * affecting the underlying bean.
 *
 * 

* Provides the {@link #filterKeys(List)} method for specifying the keys to keep in the bean map and in what order * they should appear. * * @param The class type of the wrapped bean. */ public class DelegateBeanMap extends BeanMap { private Set keys = Collections.newSetFromMap(new LinkedHashMap()); private ObjectMap overrideValues = new ObjectMap(); /** * Constructor. * * @param bean The bean being wrapped. * @param session The bean session that created this bean map. */ @SuppressWarnings("unchecked") public DelegateBeanMap(T bean, BeanSession session) { super(session, bean, session.getBeanMeta((Class)bean.getClass())); } /** * Add a key in the next position. * * @param key The key to add. */ public void addKey(String key) { this.keys.add(key); } @Override /* Map */ public Object put(String key, Object val) { this.overrideValues.put(key, val); this.keys.add(key); return null; } @Override /* Map */ public Object get(Object key) { if (overrideValues.containsKey(key)) return overrideValues.get(key); return super.get(key); } @Override /* Map */ public Set keySet() { return keys; } /** * Remove all but the specified properties from this bean map. * *

* This does not affect the underlying bean. * * @param keys The remaining keys in the bean map (in the specified order). */ public void filterKeys(List keys) { this.keys.clear(); this.keys.addAll(keys); } @Override /* Map */ public Object remove(Object key) { keys.remove(key); return null; } @Override /* BeanMap */ public BeanMeta getMeta() { return new BeanMetaFiltered(super.getMeta(), keys); } @Override /* Map */ public Set> entrySet() { Set> s = Collections.newSetFromMap(new LinkedHashMap,Boolean>()); for (final String key : keys) { BeanMapEntry bme; if (overrideValues.containsKey(key)) bme = new BeanMapEntryOverride(this, this.getPropertyMeta(key), overrideValues.get(key)); else bme = this.getProperty(key); if (bme == null) throw new BeanRuntimeException(super.getClassMeta().getInnerClass(), "Property ''{0}'' not found on class.", key); s.add(bme); } return s; } @Override /* BeanMap */ public Collection getProperties() { List l = new ArrayList(keys.size()); for (final String key : keys) { BeanPropertyMeta p = this.getPropertyMeta(key); if (overrideValues.containsKey(key)) p = new BeanPropertyMeta.Builder(this.meta, key, overrideValues.get(key), p).build(); if (p == null) throw new BeanRuntimeException(super.getClassMeta().getInnerClass(), "Property ''{0}'' not found on class.", key); l.add(p); } return l; } private class BeanMapEntryOverride extends BeanMapEntry { Object value; private BeanMapEntryOverride(BeanMap bm, BeanPropertyMeta bpm, Object value) { super(bm, bpm, bpm.getName()); this.value = value; } @Override /* Map.Entry */ public Object getValue() { return value; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy