Package ome.util
Class MapPut
- java.lang.Object
-
- ome.util.MapPut
-
- All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean
public class MapPut extends java.lang.Object implements org.springframework.beans.factory.InitializingBean
Simple bean which calls "map.put(key, object)" onInitializingBean.afterPropertiesSet()
. Must adhere to theMap
interface for nulls, etc.
-
-
Constructor Summary
Constructors Constructor Description MapPut()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterPropertiesSet()
void
setKey(java.lang.String key)
void
setMap(java.util.Map<java.lang.String,java.lang.Object> map)
void
setObject(java.lang.Object object)
-
-
-
Method Detail
-
afterPropertiesSet
public void afterPropertiesSet() throws java.lang.Exception
- Specified by:
afterPropertiesSet
in interfaceorg.springframework.beans.factory.InitializingBean
- Throws:
java.lang.Exception
-
setMap
public void setMap(java.util.Map<java.lang.String,java.lang.Object> map)
-
setKey
public void setKey(java.lang.String key)
-
setObject
public void setObject(java.lang.Object object)
-
-