Ignore:
Timestamp:
07/08/09 19:14:32 (15 years ago)
Author:
wmerlotto
Message:

Ticket #554 - Melhorias na sincronizacao de eventos, contatos e adaptacao para Funambol 7.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/psync/src/main/java/br/com/prognus/psync/items/manager/PIMCalendarManager.java

    r1009 r1103  
    4343 
    4444        /** 
     45         * @throws Exception 
    4546         * @see PIMEntityDAO#PIMEntityDAO(String, String) 
    4647         */ 
    47         public PIMCalendarManager(String jndiDataSourceName, 
    48                         Sync4jPrincipal principal) { 
     48        public PIMCalendarManager(String jndiDataSourceName, Sync4jPrincipal principal, String sourceQuery) { 
    4949 
    50                 this.dao = new PIMCalendarDAO(jndiDataSourceName, principal); 
     50                try { 
     51                        this.dao = new PIMCalendarDAO(jndiDataSourceName, principal, sourceQuery); 
     52                } catch (Exception e) { 
     53                } 
    5154                super.dao = this.dao; 
    5255 
     
    6063        /** 
    6164         * Updates a calendar. 
    62          *  
     65         * 
    6366         * @param uid 
    6467         *            the UID of the calendar 
Note: See TracChangeset for help on using the changeset viewer.