}
public static ResourceValue createResourceValue(String lang, String value)
{
ParameterValidation.throwIllegalArgExceptionIfNull(lang, "Lang");
ResourceValue resourceValue = new ResourceValue();
resourceValue.setLang(value);
resourceValue.setValue(value);
return resourceValue;
}