18a574694606f0e5d781334d0d426fc379c51f3edMarc Blank/*
28a574694606f0e5d781334d0d426fc379c51f3edMarc Blank * Copyright (C) 2011 The Android Open Source Project
38a574694606f0e5d781334d0d426fc379c51f3edMarc Blank *
48a574694606f0e5d781334d0d426fc379c51f3edMarc Blank * Licensed under the Apache License, Version 2.0 (the "License");
58a574694606f0e5d781334d0d426fc379c51f3edMarc Blank * you may not use this file except in compliance with the License.
68a574694606f0e5d781334d0d426fc379c51f3edMarc Blank * You may obtain a copy of the License at
78a574694606f0e5d781334d0d426fc379c51f3edMarc Blank *
88a574694606f0e5d781334d0d426fc379c51f3edMarc Blank *      http://www.apache.org/licenses/LICENSE-2.0
98a574694606f0e5d781334d0d426fc379c51f3edMarc Blank *
108a574694606f0e5d781334d0d426fc379c51f3edMarc Blank * Unless required by applicable law or agreed to in writing, software
118a574694606f0e5d781334d0d426fc379c51f3edMarc Blank * distributed under the License is distributed on an "AS IS" BASIS,
128a574694606f0e5d781334d0d426fc379c51f3edMarc Blank * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
138a574694606f0e5d781334d0d426fc379c51f3edMarc Blank * See the License for the specific language governing permissions and
148a574694606f0e5d781334d0d426fc379c51f3edMarc Blank * limitations under the License.
158a574694606f0e5d781334d0d426fc379c51f3edMarc Blank */
168a574694606f0e5d781334d0d426fc379c51f3edMarc Blank
178a574694606f0e5d781334d0d426fc379c51f3edMarc Blankpackage com.android.emailcommon.service;
188a574694606f0e5d781334d0d426fc379c51f3edMarc Blank
198a574694606f0e5d781334d0d426fc379c51f3edMarc Blankpublic class SyncWindow {
20335a724ee68a0a36acec75299503b2eaf4ac97d5Marc Blank    public static final int SYNC_WINDOW_AUTO = -2;
218a574694606f0e5d781334d0d426fc379c51f3edMarc Blank    public static final int SYNC_WINDOW_USER = -1;
2238eb3b3a9470741fd1bd2f2305e27275bb15c349Marc Blank    public static final int SYNC_WINDOW_UNKNOWN = 0;
238a574694606f0e5d781334d0d426fc379c51f3edMarc Blank    public static final int SYNC_WINDOW_1_DAY = 1;
248a574694606f0e5d781334d0d426fc379c51f3edMarc Blank    public static final int SYNC_WINDOW_3_DAYS = 2;
258a574694606f0e5d781334d0d426fc379c51f3edMarc Blank    public static final int SYNC_WINDOW_1_WEEK = 3;
268a574694606f0e5d781334d0d426fc379c51f3edMarc Blank    public static final int SYNC_WINDOW_2_WEEKS = 4;
278a574694606f0e5d781334d0d426fc379c51f3edMarc Blank    public static final int SYNC_WINDOW_1_MONTH = 5;
288a574694606f0e5d781334d0d426fc379c51f3edMarc Blank    public static final int SYNC_WINDOW_ALL = 6;
298a574694606f0e5d781334d0d426fc379c51f3edMarc Blank}
30