Changeset 675
- Timestamp:
- 07/01/06 12:30:51
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/calCore/src/org/bedework/calcore/hibernate/CalintfImpl.java
r657 r675 748 748 749 749 public Collection getUserTimeZones() throws CalFacadeException { 750 if (currentMode == CalintfUtil.publicAdminMode || 751 currentMode == CalintfUtil.guestMode) { 752 // No user timezones 753 return new ArrayList(); 754 } 755 750 756 sess.namedQuery("getUserTimezones"); 751 757 sess.setEntity("owner", user); trunk/calendar3/calFacade/src/org/bedework/calfacade/util/Granulator.java
r667 r675 36 36 import net.fortuna.ical4j.model.Period; 37 37 38 import java.io.Serializable; 38 39 import java.util.ArrayList; 39 40 import java.util.Collection; … … 68 69 * non-null on entry it will be used to set the startDt. 69 70 */ 70 public static class GetPeriodsPars {71 public static class GetPeriodsPars implements Serializable { 71 72 boolean debug = false; 72 73 … … 187 188 * 188 189 */ 189 public static class EventPeriod implements Comparable {190 public static class EventPeriod implements Comparable, Serializable { 190 191 private DateTime start; 191 192 private DateTime end;
