/**@class android.accounts.AuthenticatorDescription
 implements android.os.Parcelable

@extends java.lang.Object

 A {@link Parcelable} value type that contains information about an account authenticator.
*/
var AuthenticatorDescription = {

/**The string that uniquely identifies an authenticator */
type : "null",
/**A resource id of a label for the authenticator that is suitable for displaying */
labelId : "null",
/**A resource id of a icon for the authenticator */
iconId : "null",
/**A resource id of a smaller icon for the authenticator */
smallIconId : "null",
/** A resource id for a hierarchy of PreferenceScreen to be added to the settings page for the
 account. See {@link android.accounts.AbstractAccountAuthenticator} for an example.
*/
accountPreferencesId : "null",
/**The package name that can be used to lookup the resources from above. */
packageName : "null",
/**Authenticator handles its own token caching and permission screen */
customTokens : "null",
/**Used to create the object from a parcel. */
CREATOR : "null",
/**A factory method for creating an AuthenticatorDescription that can be used as a key
 to identify the authenticator by its type.
*/
newKey : function(  ) {},

/**
@inheritDoc 
*/
describeContents : function(  ) {},

/**Returns the hashcode of the type only.
*/
hashCode : function(  ) {},

/**Compares the type only, suitable for key comparisons.
*/
equals : function(  ) {},

/**
*/
toString : function(  ) {},

/**
@inheritDoc 
*/
writeToParcel : function(  ) {},


};