/**@class android.content.UriPermission
 implements android.os.Parcelable

@extends java.lang.Object

 Description of a single Uri permission grant. This grants may have been
 created via {@link android.content.Intent#FLAG_GRANT_READ_URI_PERMISSION}, etc when sending
 an {@link android.content.Intent}, or explicitly through
 {@link android.content.Context#grantUriPermission(String, android.net.Uri, int)}.

 @see ContentResolver#getPersistedUriPermissions()
*/
var UriPermission = {

/** Value returned when a permission has not been persisted.
*/
INVALID_TIME : "-9223372036854775808",
/***/
CREATOR : "null",
/**Return the Uri this permission pertains to.
*/
getUri : function(  ) {},

/**Returns if this permission offers read access.
*/
isReadPermission : function(  ) {},

/**Returns if this permission offers write access.
*/
isWritePermission : function(  ) {},

/**Return the time when this permission was first persisted, in milliseconds
 since January 1, 1970 00:00:00.0 UTC. Returns {@link #INVALID_TIME} if
 not persisted.
@see ContentResolver#takePersistableUriPermission(Uri, int)
@see System#currentTimeMillis()
*/
getPersistedTime : function(  ) {},

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

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

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


};