}
return "WES_".concat(iCalObj.getValue());
}
protected static Timestamp fromCompleted(PropertyList propertyList) {
Completed iCalObj = (Completed) propertyList.getProperty(Completed.COMPLETED);
if (iCalObj == null) {
return null;
}
Date date = iCalObj.getDate();
return new Timestamp(date.getTime());
}