public void setModelAttributes(Map<String, Object> attributes) { String uuid = (String) attributes.get("uuid"); if (uuid != null) { setUuid(uuid); } Long calendarId = (Long) attributes.get("calendarId"); if (calendarId != null) { setCalendarId(calendarId); } Long groupId = (Long) attributes.get("groupId"); if (groupId != null) { setGroupId(groupId); } Long companyId = (Long) attributes.get("companyId"); if (companyId != null) { setCompanyId(companyId); } Long userId = (Long) attributes.get("userId"); if (userId != null) { setUserId(userId); } String userName = (String) attributes.get("userName"); if (userName != null) { setUserName(userName); } Date createDate = (Date) attributes.get("createDate"); if (createDate != null) { setCreateDate(createDate); } Date modifiedDate = (Date) attributes.get("modifiedDate"); if (modifiedDate != null) { setModifiedDate(modifiedDate); } Long resourceBlockId = (Long) attributes.get("resourceBlockId"); if (resourceBlockId != null) { setResourceBlockId(resourceBlockId); } Long calendarResourceId = (Long) attributes.get("calendarResourceId"); if (calendarResourceId != null) { setCalendarResourceId(calendarResourceId); } String name = (String) attributes.get("name"); if (name != null) { setName(name); } String description = (String) attributes.get("description"); if (description != null) { setDescription(description); } Integer color = (Integer) attributes.get("color"); if (color != null) { setColor(color); } Boolean defaultCalendar = (Boolean) attributes.get("defaultCalendar"); if (defaultCalendar != null) { setDefaultCalendar(defaultCalendar); } Boolean enableComments = (Boolean) attributes.get("enableComments"); if (enableComments != null) { setEnableComments(enableComments); } Boolean enableRatings = (Boolean) attributes.get("enableRatings"); if (enableRatings != null) { setEnableRatings(enableRatings); } }
public void setPrimaryKey(long primaryKey) { setCalendarId(primaryKey); }