add the combination of IOC and dropwizard code
authorhu.rui <hu.rui2@zte.com.cn>
Mon, 23 Jan 2017 06:47:45 +0000 (14:47 +0800)
committerhu.rui <hu.rui2@zte.com.cn>
Mon, 23 Jan 2017 06:51:18 +0000 (14:51 +0800)
commit37eb51a353bbf01d8cade1e759ac076e6f45b00f
treed96357c40822d8266eaaa1cebd458df5e396affb
parent4560a7f527325ac054b53757d3acbe4f29b53099
add the combination of IOC and dropwizard code

Change-Id: I2f94c017fa548174a57308a48d24dab51d959558
Issue-id: OCS-193
Signed-off-by: hu.rui <hu.rui2@zte.com.cn>
19 files changed:
dropwizard-ioc-container/pom.xml
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/annotation/BaseService.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/annotation/Lazy.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/annotation/PostBaseService.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/annotation/PreBaseService.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/annotation/PreLoad.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/annotation/PreServiceLoad.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/bundle/AutoConfigBundle.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/bundle/AutoConfigBundleBuider.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/bundle/IOCApplication.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/bundle/ServiceLocatorManaged.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/utils/ServiceBinder.java [new file with mode: 0644]
dropwizard-ioc-container/src/main/java/org/openo/dropwizard/ioc/utils/ServiceLocatorHolder.java [new file with mode: 0644]
dropwizard-ioc-container/src/test/java/org/openo/dropwizard/ioc/test/service/IOCBundleTest.java [new file with mode: 0644]
dropwizard-ioc-container/src/test/java/org/openo/dropwizard/ioc/test/service/PreTestService.java [new file with mode: 0644]
dropwizard-ioc-container/src/test/java/org/openo/dropwizard/ioc/test/service/TestService.java [new file with mode: 0644]
dropwizard-ioc-container/src/test/java/org/openo/dropwizard/ioc/test/service/app/ExampleApp.java [new file with mode: 0644]
dropwizard-ioc-container/src/test/java/org/openo/dropwizard/ioc/test/service/conf/TestConfiguration.java [new file with mode: 0644]
dropwizard-ioc-container/src/test/resources/example.yml [new file with mode: 0644]