1 /**
2 * Logback: the reliable, generic, fast and flexible logging framework. Copyright (C) 1999-2015, QOS.ch. All rights
3 * reserved.
4 *
5 * This program and the accompanying materials are dual-licensed under either the terms of the Eclipse Public License
6 * v1.0 as published by the Eclipse Foundation
7 *
8 * or (per the licensee's choosing)
9 *
10 * under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation.
11 */
12 package ch.qos.logback.core.joran.action;
13
14 import ch.qos.logback.core.joran.util.PropertySetter;
15 import ch.qos.logback.core.util.AggregationType;
16
17 /**
18 * Lump together several fields for use by {@link ch.qos.logback.core.model.processor.ImplicitModelHandler ImplicitModelHandler}.
19 *
20 * @author Ceki
21 */
22 public class ImplicitModelDataForComplexProperty extends ImplicitModelData {
23
24 private Object nestedComplexProperty;
25
26 public ImplicitModelDataForComplexProperty(PropertySetter parentBean, AggregationType aggregationType,
27 String propertyName) {
28 super(parentBean, aggregationType, propertyName);
29 }
30
31 public Object getNestedComplexProperty() {
32 return nestedComplexProperty;
33 }
34
35 public void setNestedComplexProperty(Object nestedComplexProperty) {
36 this.nestedComplexProperty = nestedComplexProperty;
37 }
38
39 }