org.apache.camel.BeanInject Java Examples

The following examples show how to use org.apache.camel.BeanInject. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TestClass1.java    From camel-idea-plugin with Apache License 2.0 4 votes vote down vote up
@BeanInject
public TestClass1(TestClass2 field3) {
    this.field3 = field3;
}
 
Example #2
Source File: TestClass1.java    From camel-idea-plugin with Apache License 2.0 4 votes vote down vote up
@BeanInject
public void setField2(TestClass2 field2) {
    this.field2 = field2;
}
 
Example #3
Source File: TestClass1.java    From camel-idea-plugin with Apache License 2.0 4 votes vote down vote up
@BeanInject
public void setField4(TestClass3 field4) {
    this.field4 = field4;
}