02-24-2012 03:26 AM
<activiti:formProperty id="firstName" name="First name" type="string" value="${Person.getFirstname()}" writable="false" />
package beans;
import java.io.Serializable;
public class Person implements Serializable {
private static final long serialVersionUID = 1L;
private String firstname = "xxx";
public Person() {
firstname = "xxx";
}
public void setFirstname() {
firstname = "xxx";
}
public String getFirstname() {
return firstname;
}
}
02-26-2012 05:39 AM
02-26-2012 01:27 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.