Hi, I have a simple component as follows:
@Component (name="Test") @Instantiate public class Test { @Property(name="foo", value="my-instance-2") String buffer = "abcbuffer"; public Test() { System.out.println("test running"); } } i use the "instance iTest" i have the result g! instance iTest instance name="iTest" state="valid" bundle="31" component.type="Test" handler name="org.apache.felix.ipojo:properties" state="valid" property name="foo" value="abcbuffer" handler name="org.apache.felix.ipojo:callback" state="valid" handler name="org.apache.felix.ipojo:architecture" state="valid" object name="test.Test@637a91a" How to i get "buffer" property via "introspection" from another component? here, i want to display the "abcbuffer" value. Regards,