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

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

@ -24,11 +24,13 @@ public class UserActivity extends RemoteModel {
// --- properties
/** ID */
private static final LongProperty ID = new LongProperty(
@SuppressWarnings("WeakerAccess")
public static final LongProperty ID = new LongProperty(
TABLE, ID_PROPERTY_NAME);
/** Remote ID */
private static final StringProperty UUID = new StringProperty(
@SuppressWarnings("WeakerAccess")
public static final StringProperty UUID = new StringProperty(
TABLE, UUID_PROPERTY_NAME);
/** Action */
@ -36,11 +38,13 @@ public class UserActivity extends RemoteModel {
TABLE, "action");
/** Message */
private static final StringProperty MESSAGE = new StringProperty(
@SuppressWarnings("WeakerAccess")
public static final StringProperty MESSAGE = new StringProperty(
TABLE, "message");
/** 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);
/** Target id */

Loading…
Cancel
Save