01: /*****************************************************************************
02: * Copyright (c) PicoContainer Organization. All rights reserved. *
03: * ------------------------------------------------------------------------- *
04: * The software in this package is published under the terms of the BSD *
05: * style license a copy of which has been included with this distribution in *
06: * the LICENSE.txt file. *
07: * *
08: *****************************************************************************/package org.picocontainer.containers;
09:
10: import org.picocontainer.PicoContainer;
11:
12: /**
13: * container backed by system properties.
14: * @author k.pribluda
15: */
16: @SuppressWarnings("serial")
17: public class SystemPropertiesPicoContainer extends
18: PropertiesPicoContainer {
19:
20: public SystemPropertiesPicoContainer() {
21: this (null);
22: }
23:
24: public SystemPropertiesPicoContainer(PicoContainer parent) {
25: super(System.getProperties(), parent);
26: }
27: }
|