Restricting access broke db generation

pull/467/head
Alex Baker 8 years ago
parent 5ab84b1b7e
commit 50416d0673

@ -33,7 +33,8 @@ public final class TaskAttachment extends RemoteModel {
TABLE, ID_PROPERTY_NAME); TABLE, ID_PROPERTY_NAME);
/** Remote id */ /** Remote id */
private static final StringProperty UUID = new StringProperty( @SuppressWarnings("WeakerAccess")
public static final StringProperty UUID = new StringProperty(
TABLE, UUID_PROPERTY_NAME); TABLE, UUID_PROPERTY_NAME);
/** Task uuid */ /** Task uuid */
@ -41,7 +42,8 @@ public final class TaskAttachment extends RemoteModel {
TABLE, "task_id"); TABLE, "task_id");
/** File name */ /** File name */
private static final StringProperty NAME = new StringProperty( @SuppressWarnings("WeakerAccess")
public static final StringProperty NAME = new StringProperty(
TABLE, "name"); TABLE, "name");
/** File path (on local storage) */ /** File path (on local storage) */

@ -29,11 +29,13 @@ public final class TaskListMetadata extends RemoteModel {
// --- properties // --- properties
/** ID */ /** ID */
private static final LongProperty ID = new LongProperty( @SuppressWarnings("WeakerAccess")
public static final LongProperty ID = new LongProperty(
TABLE, ID_PROPERTY_NAME); TABLE, ID_PROPERTY_NAME);
/** Remote id */ /** Remote id */
private static final StringProperty UUID = new StringProperty( @SuppressWarnings("WeakerAccess")
public static final StringProperty UUID = new StringProperty(
TABLE, UUID_PROPERTY_NAME); TABLE, UUID_PROPERTY_NAME);
/** Tag UUID */ /** Tag UUID */

@ -24,11 +24,13 @@ public class UserActivity extends RemoteModel {
// --- properties // --- properties
/** ID */ /** ID */
private static final LongProperty ID = new LongProperty( @SuppressWarnings("WeakerAccess")
public static final LongProperty ID = new LongProperty(
TABLE, ID_PROPERTY_NAME); TABLE, ID_PROPERTY_NAME);
/** Remote ID */ /** Remote ID */
private static final StringProperty UUID = new StringProperty( @SuppressWarnings("WeakerAccess")
public static final StringProperty UUID = new StringProperty(
TABLE, UUID_PROPERTY_NAME); TABLE, UUID_PROPERTY_NAME);
/** Action */ /** Action */
@ -36,11 +38,13 @@ public class UserActivity extends RemoteModel {
TABLE, "action"); TABLE, "action");
/** Message */ /** Message */
private static final StringProperty MESSAGE = new StringProperty( @SuppressWarnings("WeakerAccess")
public static final StringProperty MESSAGE = new StringProperty(
TABLE, "message"); TABLE, "message");
/** Picture */ /** Picture */
private static final StringProperty PICTURE = new StringProperty( @SuppressWarnings("WeakerAccess")
public static final StringProperty PICTURE = new StringProperty(
TABLE, "picture", Property.PROP_FLAG_JSON | Property.PROP_FLAG_PICTURE); TABLE, "picture", Property.PROP_FLAG_JSON | Property.PROP_FLAG_PICTURE);
/** Target id */ /** Target id */

Loading…
Cancel
Save