I`m working with springwebflow 2 and Zk 6.
I`m calling a method with 2 constants parameters
<on-render>
<evaluate expression="service.mythod(mypackage.Constants.ID_CATALOG_PERSON_SUFFIX_TYPE, mypackage.Constants.ApplicationConstant.LANGUAGE_ISO)"
result="viewScope.listSuffix" />
</on-render>
It invoke the method but the parameter are null :
Constant CLASS:
public class Constants {
public final static String ID_CATALOG_PARTY_TYPE = "PARTY_TYPE";
public final static String ID_CATALOG_PERSON ="PERSON";
}
can anybody help me?