@ELBeanName(value = "test")
@ManagedBean(name = "test")
@RequestScoped
@Join(path = "/test/{p}", to = "/test.xhtml")
public class FilesPostalItem implements Serializable {
    @Parameter("p")
    private String p;
    
    public String getP() {
        return p;
    }

    public void setP(String p) {
        this.p = p;
    }

    public void test1(ActionEvent event) {
        System.out.println("TEST - " + p);
    }
}
