return SUCCESS;
}
public String save() {
try {
CalendarConfig config = new CalendarConfig();
config.setContentTypeCode(this.getContentType());
config.setStartAttributeName(this.getStartDateAttributeName());
config.setEndAttributeName(this.getEndDateAttributeName());
this.getCalendarManager().updateConfig(config);
this.addActionMessage(this.getText("message.calendarConfig.updated"));
} catch (Throwable t) {
ApsSystemUtils.logThrowable(t, this, "save");
return FAILURE;