Hi,
the seam docs explains how to setup properties in the components.xml file, which later can be accessed by seam components.
However, I could not find which annotations or methods I have to use to actually read them in.
Inside a custom seam component, how would I access them?
toni
@Name("foo")
public class Foo {
private String bar;
// Getters and setters for bar
public void doSomething() {
// bar contains "Pete"
}
}<component name="foo"> <property name="bar">Pete</property> </component>