| 
  |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| SpringBeanParameter.java | - | 100% | 100% | 100% | 
             | 
  ||||||||||||||
| 1 | // Copyright 2004, 2005 The Apache Software Foundation | |
| 2 | // | |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | // you may not use this file except in compliance with the License. | |
| 5 | // You may obtain a copy of the License at | |
| 6 | // | |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 | // | |
| 9 | // Unless required by applicable law or agreed to in writing, software | |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 | // See the License for the specific language governing permissions and | |
| 13 | // limitations under the License. | |
| 14 | ||
| 15 | package org.apache.hivemind.lib.impl; | |
| 16 | ||
| 17 | import org.apache.hivemind.impl.BaseLocatable; | |
| 18 | import org.springframework.beans.factory.BeanFactory; | |
| 19 | ||
| 20 | /** | |
| 21 | * Parameter to {@link org.apache.hivemind.lib.impl.SpringLookupFactory}, containing a (required) | |
| 22 | * bean name to obtain, and an (optional) bean factory. | |
| 23 | * | |
| 24 | * @author Howard Lewis Ship | |
| 25 | */ | |
| 26 | public class SpringBeanParameter extends BaseLocatable | |
| 27 | { | |
| 28 | private String _name; | |
| 29 | ||
| 30 | /** @since 1.1 */ | |
| 31 | private BeanFactory _beanFactory; | |
| 32 | ||
| 33 | 3 | public String getName() | 
| 34 | { | |
| 35 | 3 | return _name; | 
| 36 | } | |
| 37 | ||
| 38 | 3 | public void setName(String string) | 
| 39 | { | |
| 40 | 3 | _name = string; | 
| 41 | } | |
| 42 | ||
| 43 | /** @since 1.1 */ | |
| 44 | 3 | public BeanFactory getBeanFactory() | 
| 45 | { | |
| 46 | 3 | return _beanFactory; | 
| 47 | } | |
| 48 | ||
| 49 | /** @since 1.1 */ | |
| 50 | 1 | public void setBeanFactory(BeanFactory beanFactory) | 
| 51 | { | |
| 52 | 1 | _beanFactory = beanFactory; | 
| 53 | } | |
| 54 | } | 
  | 
||||||||||