Back to project page PatternAndroid.
The source code is released under:
MIT License
If you think the Android project PatternAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.twitterclone.model; /*from www . j a v a2 s .co m*/ import com.foxykeep.datadroid.requestmanager.Request; public final class RequestFactory { public static final int REQUEST_TWEETS = 1; public static Request getTweetsRequest(String screenName) { Request request = new Request(REQUEST_TWEETS); request.put("screen_name", screenName); return request; } private RequestFactory() { } }