-
Notifications
You must be signed in to change notification settings - Fork 125
Home
Matthew Dean edited this page Feb 18, 2015
·
11 revisions
##Design Philosophy
JRAW was built off the principle that only a few specific classes should be able to access the network. Therefore, only classes that implement NetworkAccessible
can send HTTP requests. In order for other classes to send HTTP requests, they must acquire a RedditClient
, such as what Paginator
does.
All models are instantiated with a Jackson JsonNode
parsed from responses from the Reddit API.
##Getting Started See Quickstart