Skip to content

Commit 3f0f63c

Browse files
danielsanfrJawnnypoo
authored andcommitted
Expose useful constants (#930)
* Expose useful constants Signed-off-by: Daniel San <[email protected]> * Fix import order Signed-off-by: Daniel San <[email protected]>
1 parent aa36e0e commit 3f0f63c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

parse/src/main/java/com/parse/ParseObject.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ public class ParseObject implements Parcelable {
6767
/*
6868
REST JSON Keys
6969
*/
70-
private static final String KEY_OBJECT_ID = "objectId";
70+
public static final String KEY_OBJECT_ID = "objectId";
71+
public static final String KEY_CREATED_AT = "createdAt";
72+
public static final String KEY_UPDATED_AT = "updatedAt";
7173
private static final String KEY_CLASS_NAME = "className";
7274
private static final String KEY_ACL = "ACL";
73-
private static final String KEY_CREATED_AT = "createdAt";
74-
private static final String KEY_UPDATED_AT = "updatedAt";
7575
/*
7676
Internal JSON Keys - Used to store internal data when persisting {@code ParseObject}s locally.
7777
*/

0 commit comments

Comments
 (0)