1 /* 2 * Copyright (C) 2009 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package android.content; 18 19 import android.accounts.Account; 20 import android.os.Parcel; 21 import android.os.Parcelable.Creator; 22 23 /** @hide */ 24 public class ActiveSyncInfo { 25 public final int authorityId; 26 public final Account account; 27 public final String authority; 28 public final long startTime; 29 ActiveSyncInfo(int authorityId, Account account, String authority, long startTime)30 ActiveSyncInfo(int authorityId, Account account, String authority, 31 long startTime) { 32 this.authorityId = authorityId; 33 this.account = account; 34 this.authority = authority; 35 this.startTime = startTime; 36 } 37 describeContents()38 public int describeContents() { 39 return 0; 40 } 41 writeToParcel(Parcel parcel, int flags)42 public void writeToParcel(Parcel parcel, int flags) { 43 parcel.writeInt(authorityId); 44 account.writeToParcel(parcel, 0); 45 parcel.writeString(authority); 46 parcel.writeLong(startTime); 47 } 48 ActiveSyncInfo(Parcel parcel)49 ActiveSyncInfo(Parcel parcel) { 50 authorityId = parcel.readInt(); 51 account = new Account(parcel); 52 authority = parcel.readString(); 53 startTime = parcel.readLong(); 54 } 55 56 public static final Creator<ActiveSyncInfo> CREATOR = new Creator<ActiveSyncInfo>() { 57 public ActiveSyncInfo createFromParcel(Parcel in) { 58 return new ActiveSyncInfo(in); 59 } 60 61 public ActiveSyncInfo[] newArray(int size) { 62 return new ActiveSyncInfo[size]; 63 } 64 }; 65 }