
org.openl.spring.env.PropertyBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.openl.spring Show documentation
Show all versions of org.openl.spring Show documentation
Common components for Spring integration
The newest version!
package org.openl.spring.env;
import java.util.Collections;
import java.util.Map;
public class PropertyBean {
private final Map defaultPropertyMap;
private final Map propertyMap;
public PropertyBean(Map defaultPropertyMap, Map propertyMap) {
this.defaultPropertyMap = Collections.unmodifiableMap(defaultPropertyMap);
this.propertyMap = Collections.unmodifiableMap(propertyMap);
}
public Map getDefaultPropertyMap() {
return defaultPropertyMap;
}
public Map getPropertyMap() {
return propertyMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy