source: contrib/psync/src/main/java/br/com/prognus/psync/util/Def.java @ 1009

Revision 1009, 1.2 KB checked in by wmerlotto, 15 years ago (diff)

Ticket #554 - Commit da versão inicial do psync.

Line 
1/**
2 *
3 * @author Diorgenes Felipe Grzesiuk <diorgenes@prognus.com.br>
4 * @copyright Copyright 2007-2008 Prognus
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with Foobar; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 */
19package br.com.prognus.psync.util;
20
21import com.funambol.framework.engine.SyncItemState;
22
23public class Def {
24
25        public static final String LOGGER_NAME = "PSYNC";
26
27        public static final char PIM_STATE_NEW = SyncItemState.NEW;
28
29        public static final char PIM_STATE_UPDATED = SyncItemState.UPDATED;
30
31        public static final char PIM_STATE_DELETED = SyncItemState.DELETED;
32
33        public static final char PIM_STATE_UNCHANGED = SyncItemState.UNKNOWN;
34
35}
Note: See TracBrowser for help on using the repository browser.