aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/java/org/wordpress/android/ui/plans/PlansConstants.java
diff options
context:
space:
mode:
Diffstat (limited to 'WordPress/src/main/java/org/wordpress/android/ui/plans/PlansConstants.java')
-rw-r--r--WordPress/src/main/java/org/wordpress/android/ui/plans/PlansConstants.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/WordPress/src/main/java/org/wordpress/android/ui/plans/PlansConstants.java b/WordPress/src/main/java/org/wordpress/android/ui/plans/PlansConstants.java
new file mode 100644
index 000000000..203bb6eba
--- /dev/null
+++ b/WordPress/src/main/java/org/wordpress/android/ui/plans/PlansConstants.java
@@ -0,0 +1,17 @@
+package org.wordpress.android.ui.plans;
+
+
+public class PlansConstants {
+ // This constant is used to set a plan id on newly created blog. Note that a refresh of the blog
+ // is started immediately after, so even if we decide to offer premium for all on new blogs
+ // the app will be in sync after a while.
+ public static final long DEFAULT_PLAN_ID_FOR_NEW_BLOG = 1L;
+
+ public static final long FREE_PLAN_ID = 1L;
+ public static final long PREMIUM_PLAN_ID = 1003L;
+ public static final long BUSINESS_PLAN_ID = 1008L;
+
+ public static final long JETPACK_FREE_PLAN_ID = 2002L;
+ public static final long JETPACK_PREMIUM_PLAN_ID = 2000L;
+ public static final long JETPACK_BUSINESS_PLAN_ID = 2001L;
+}