Changeset 564

Show
Ignore:
Timestamp:
06/09/06 14:50:09
Author:
douglm
Message:

Copy style so that it gets persisted

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/calendar3/calFacade/src/org/bedework/calfacade/svc/BwSubscription.java

    r446 r564  
    360360    sub.setInternalSubscription(getInternalSubscription()); 
    361361    sub.setDisplay(getDisplay()); 
     362    sub.setStyle(getStyle()); 
    362363    sub.setAffectsFreeBusy(getAffectsFreeBusy()); 
    363364    sub.setEmailNotifications(getEmailNotifications()); 
     
    414415    sb.append(", uri="); 
    415416    sb.append(String.valueOf(getUri())); 
     417    sb.append(", affectsFreeBusy="); 
     418    sb.append(String.valueOf(getAffectsFreeBusy())); 
     419    sb.append(", ignoreTransparency="); 
     420    sb.append(String.valueOf(getIgnoreTransparency())); 
     421    sb.append(", display="); 
     422    sb.append(String.valueOf(getDisplay())); 
     423    sb.append(", style="); 
     424    sb.append(String.valueOf(getStyle())); 
     425    sb.append(", internalSubscription="); 
     426    sb.append(String.valueOf(getInternalSubscription())); 
     427    sb.append(", emailNotifications="); 
     428    sb.append(String.valueOf(getEmailNotifications())); 
     429    sb.append(", calendarDeleted="); 
     430    sb.append(String.valueOf(getCalendarDeleted())); 
    416431    sb.append(", unremoveable="); 
    417432    sb.append(getUnremoveable());