/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.calendar.model; import aQute.bnd.annotation.ProviderType; import java.io.Serializable; import java.util.ArrayList; import java.util.Date; import java.util.List; /** * This class is used by SOAP remote services, specifically {@link com.liferay.calendar.service.http.CalendarBookingServiceSoap}. * * @author Eduardo Lundgren * @see com.liferay.calendar.service.http.CalendarBookingServiceSoap * @generated */ @ProviderType public class CalendarBookingSoap implements Serializable { public static CalendarBookingSoap toSoapModel(CalendarBooking model) { CalendarBookingSoap soapModel = new CalendarBookingSoap(); soapModel.setUuid(model.getUuid()); soapModel.setCalendarBookingId(model.getCalendarBookingId()); soapModel.setGroupId(model.getGroupId()); soapModel.setCompanyId(model.getCompanyId()); soapModel.setUserId(model.getUserId()); soapModel.setUserName(model.getUserName()); soapModel.setCreateDate(model.getCreateDate()); soapModel.setModifiedDate(model.getModifiedDate()); soapModel.setResourceBlockId(model.getResourceBlockId()); soapModel.setCalendarId(model.getCalendarId()); soapModel.setCalendarResourceId(model.getCalendarResourceId()); soapModel.setParentCalendarBookingId(model.getParentCalendarBookingId()); soapModel.setRecurringCalendarBookingId(model.getRecurringCalendarBookingId()); soapModel.setVEventUid(model.getVEventUid()); soapModel.setTitle(model.getTitle()); soapModel.setDescription(model.getDescription()); soapModel.setLocation(model.getLocation()); soapModel.setStartTime(model.getStartTime()); soapModel.setEndTime(model.getEndTime()); soapModel.setAllDay(model.getAllDay()); soapModel.setRecurrence(model.getRecurrence()); soapModel.setFirstReminder(model.getFirstReminder()); soapModel.setFirstReminderType(model.getFirstReminderType()); soapModel.setSecondReminder(model.getSecondReminder()); soapModel.setSecondReminderType(model.getSecondReminderType()); soapModel.setLastPublishDate(model.getLastPublishDate()); soapModel.setStatus(model.getStatus()); soapModel.setStatusByUserId(model.getStatusByUserId()); soapModel.setStatusByUserName(model.getStatusByUserName()); soapModel.setStatusDate(model.getStatusDate()); return soapModel; } public static CalendarBookingSoap[] toSoapModels(CalendarBooking[] models) { CalendarBookingSoap[] soapModels = new CalendarBookingSoap[models.length]; for (int i = 0; i < models.length; i++) { soapModels[i] = toSoapModel(models[i]); } return soapModels; } public static CalendarBookingSoap[][] toSoapModels( CalendarBooking[][] models) { CalendarBookingSoap[][] soapModels = null; if (models.length > 0) { soapModels = new CalendarBookingSoap[models.length][models[0].length]; } else { soapModels = new CalendarBookingSoap[0][0]; } for (int i = 0; i < models.length; i++) { soapModels[i] = toSoapModels(models[i]); } return soapModels; } public static CalendarBookingSoap[] toSoapModels( List<CalendarBooking> models) { List<CalendarBookingSoap> soapModels = new ArrayList<CalendarBookingSoap>(models.size()); for (CalendarBooking model : models) { soapModels.add(toSoapModel(model)); } return soapModels.toArray(new CalendarBookingSoap[soapModels.size()]); } public CalendarBookingSoap() { } public long getPrimaryKey() { return _calendarBookingId; } public void setPrimaryKey(long pk) { setCalendarBookingId(pk); } public String getUuid() { return _uuid; } public void setUuid(String uuid) { _uuid = uuid; } public long getCalendarBookingId() { return _calendarBookingId; } public void setCalendarBookingId(long calendarBookingId) { _calendarBookingId = calendarBookingId; } public long getGroupId() { return _groupId; } public void setGroupId(long groupId) { _groupId = groupId; } public long getCompanyId() { return _companyId; } public void setCompanyId(long companyId) { _companyId = companyId; } public long getUserId() { return _userId; } public void setUserId(long userId) { _userId = userId; } public String getUserName() { return _userName; } public void setUserName(String userName) { _userName = userName; } public Date getCreateDate() { return _createDate; } public void setCreateDate(Date createDate) { _createDate = createDate; } public Date getModifiedDate() { return _modifiedDate; } public void setModifiedDate(Date modifiedDate) { _modifiedDate = modifiedDate; } public long getResourceBlockId() { return _resourceBlockId; } public void setResourceBlockId(long resourceBlockId) { _resourceBlockId = resourceBlockId; } public long getCalendarId() { return _calendarId; } public void setCalendarId(long calendarId) { _calendarId = calendarId; } public long getCalendarResourceId() { return _calendarResourceId; } public void setCalendarResourceId(long calendarResourceId) { _calendarResourceId = calendarResourceId; } public long getParentCalendarBookingId() { return _parentCalendarBookingId; } public void setParentCalendarBookingId(long parentCalendarBookingId) { _parentCalendarBookingId = parentCalendarBookingId; } public long getRecurringCalendarBookingId() { return _recurringCalendarBookingId; } public void setRecurringCalendarBookingId(long recurringCalendarBookingId) { _recurringCalendarBookingId = recurringCalendarBookingId; } public String getVEventUid() { return _vEventUid; } public void setVEventUid(String vEventUid) { _vEventUid = vEventUid; } public String getTitle() { return _title; } public void setTitle(String title) { _title = title; } public String getDescription() { return _description; } public void setDescription(String description) { _description = description; } public String getLocation() { return _location; } public void setLocation(String location) { _location = location; } public long getStartTime() { return _startTime; } public void setStartTime(long startTime) { _startTime = startTime; } public long getEndTime() { return _endTime; } public void setEndTime(long endTime) { _endTime = endTime; } public boolean getAllDay() { return _allDay; } public boolean isAllDay() { return _allDay; } public void setAllDay(boolean allDay) { _allDay = allDay; } public String getRecurrence() { return _recurrence; } public void setRecurrence(String recurrence) { _recurrence = recurrence; } public long getFirstReminder() { return _firstReminder; } public void setFirstReminder(long firstReminder) { _firstReminder = firstReminder; } public String getFirstReminderType() { return _firstReminderType; } public void setFirstReminderType(String firstReminderType) { _firstReminderType = firstReminderType; } public long getSecondReminder() { return _secondReminder; } public void setSecondReminder(long secondReminder) { _secondReminder = secondReminder; } public String getSecondReminderType() { return _secondReminderType; } public void setSecondReminderType(String secondReminderType) { _secondReminderType = secondReminderType; } public Date getLastPublishDate() { return _lastPublishDate; } public void setLastPublishDate(Date lastPublishDate) { _lastPublishDate = lastPublishDate; } public int getStatus() { return _status; } public void setStatus(int status) { _status = status; } public long getStatusByUserId() { return _statusByUserId; } public void setStatusByUserId(long statusByUserId) { _statusByUserId = statusByUserId; } public String getStatusByUserName() { return _statusByUserName; } public void setStatusByUserName(String statusByUserName) { _statusByUserName = statusByUserName; } public Date getStatusDate() { return _statusDate; } public void setStatusDate(Date statusDate) { _statusDate = statusDate; } private String _uuid; private long _calendarBookingId; private long _groupId; private long _companyId; private long _userId; private String _userName; private Date _createDate; private Date _modifiedDate; private long _resourceBlockId; private long _calendarId; private long _calendarResourceId; private long _parentCalendarBookingId; private long _recurringCalendarBookingId; private String _vEventUid; private String _title; private String _description; private String _location; private long _startTime; private long _endTime; private boolean _allDay; private String _recurrence; private long _firstReminder; private String _firstReminderType; private long _secondReminder; private String _secondReminderType; private Date _lastPublishDate; private int _status; private long _statusByUserId; private String _statusByUserName; private Date _statusDate; }