Complete the separation of spring related implementations
[smart-util.git] / smart-bean-spring-util / src / test / java / com / smartitengineering / util / bean / spring / TestBeanDummyAggregatorLevel4.java
blob58a2c562d5d1e3152b985cb595eb6cc3cf452085
1 /*
2 * This is a utility project for wide range of applications
3 *
4 * Copyright (C) 8 Imran M Yousuf (imyousuf@smartitengineering.com)
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 3 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 10-1 USA
18 package com.smartitengineering.util.bean.spring;
20 import com.smartitengineering.util.bean.annotations.Aggregator;
21 import com.smartitengineering.util.bean.annotations.InjectableField;
23 /**
25 * @author imyousuf
27 @Aggregator(contextName="testContext")
28 public class TestBeanDummyAggregatorLevel4 {
29 @InjectableField
30 private TestBean testBean3;
32 public TestBean getTestBean3() {
33 return testBean3;