Defines or removes a bean accessible by name in EL expressions. When a non-null bean is provided, it is stored under the given name. When null is provided, the bean with the given name is removed. @param name the bean name @param bean the bean object to define, or null to remove the
(String name, Object bean)
| 265 | * @param bean the bean object to define, or {@code null} to remove the bean |
| 266 | */ |
| 267 | public void defineBean(String name, Object bean) { |
| 268 | manager.defineBean(name, bean); |
| 269 | } |
| 270 | |
| 271 | |
| 272 | private static String bracket(String expression) { |
no outgoing calls