Author: sebawagner
Date: Sun Mar 4 17:17:11 2012
New Revision: 1296838
URL: http://svn.apache.org/viewvc?rev=1296838&view=rev
Log:
OPENMEETINGS-8 Fix StartUp error (WildcardTypeImpl is not allowed in
Web-Service Gateway)
Modified:
incubator/openmeetings/trunk/singlewebapp/src/calendarservice/org/openmeetings/axis/services/CalendarWebServiceFacade.java
Modified:
incubator/openmeetings/trunk/singlewebapp/src/calendarservice/org/openmeetings/axis/services/CalendarWebServiceFacade.java
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/src/calendarservice/org/openmeetings/axis/services/CalendarWebServiceFacade.java?rev=1296838&r1=1296837&r2=1296838&view=diff
==============================================================================
---
incubator/openmeetings/trunk/singlewebapp/src/calendarservice/org/openmeetings/axis/services/CalendarWebServiceFacade.java
(original)
+++
incubator/openmeetings/trunk/singlewebapp/src/calendarservice/org/openmeetings/axis/services/CalendarWebServiceFacade.java
Sun Mar 4 17:17:11 2012
@@ -90,12 +90,12 @@ public class CalendarWebServiceFacade {
Date appointmentstart, Date appointmentend, Boolean
isDaily,
Boolean isWeekly, Boolean isMonthly, Boolean isYearly,
Long categoryId, Long remind,
- @SuppressWarnings("rawtypes") List mmClient, Long
roomType,
+ Long roomType,
String baseUrl, Long language_id) throws AxisFault {
return getCalendarServiceProxy().saveAppointment(SID,
appointmentName,
appointmentLocation, appointmentDescription,
appointmentstart,
appointmentend, isDaily, isWeekly, isMonthly,
isYearly,
- categoryId, remind, mmClient, roomType,
baseUrl, language_id);
+ categoryId, remind, null, roomType, baseUrl,
language_id);
}
public Long updateAppointmentTimeOnly(String SID, Long appointmentId,
@@ -111,12 +111,12 @@ public class CalendarWebServiceFacade {
String appointmentDescription, Date appointmentstart,
Date appointmentend, Boolean isDaily, Boolean isWeekly,
Boolean isMonthly, Boolean isYearly, Long categoryId,
Long remind,
- List<?> mmClient, Long roomType, String baseurl, Long
language_id)
+ Long roomType, String baseurl, Long language_id)
throws AxisFault {
return getCalendarServiceProxy().updateAppointment(SID,
appointmentId,
appointmentName, appointmentLocation,
appointmentDescription,
appointmentstart, appointmentend, isDaily,
isWeekly, isMonthly,
- isYearly, categoryId, remind, mmClient,
roomType, baseurl,
+ isYearly, categoryId, remind, null, roomType,
baseurl,
language_id);
}