diff options
Diffstat (limited to 'src/com/p4square/grow/frontend/FeedData.java')
-rw-r--r-- | src/com/p4square/grow/frontend/FeedData.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/com/p4square/grow/frontend/FeedData.java b/src/com/p4square/grow/frontend/FeedData.java index eddc6a4..55e845c 100644 --- a/src/com/p4square/grow/frontend/FeedData.java +++ b/src/com/p4square/grow/frontend/FeedData.java @@ -5,6 +5,9 @@ package com.p4square.grow.frontend; import java.io.IOException; + +import java.util.Arrays; +import java.util.HashSet; import java.util.List; import org.restlet.Context; @@ -25,6 +28,13 @@ import com.p4square.grow.provider.Provider; */ public class FeedData { + /** + * Allowed Topics. + */ + public static final HashSet<String> TOPICS = new HashSet(Arrays.asList("seeker", "believer", + "disciple", "teacher", "leader")); + + private final Config mConfig; private final String mBackendURI; |