This repository was archived by the owner on Jan 21, 2022. It is now read-only.
US374082 : [iOS] MAS network enhancement with tasks and RequestBuilde…#84
Merged
US374082 : [iOS] MAS network enhancement with tasks and RequestBuilde…#84
Conversation
…r Interface to align with Android
jhoongo
reviewed
Sep 7, 2017
| #import "MASRequestBuilder.h" | ||
|
|
||
| /** | ||
| MASRequest class is an object created by MASRequestBuilder. It's contains all parameters necessary to invoke an API. |
Contributor
There was a problem hiding this comment.
MASRequest class is an object created by MASRequestBuilder. It contains all necessary information to invoke an API.
jhoongo
reviewed
Sep 7, 2017
| @property (nonatomic, strong, readonly) NSString *httpMethod; | ||
|
|
||
| /** | ||
| BOOL value that determines whether or not the target host is a primary gateway or another gateway/public server. |
Contributor
There was a problem hiding this comment.
BOOL value that determines whether or not to include credentials of primary gateway in the request.
jhoongo
reviewed
Sep 7, 2017
|
|
||
| /** | ||
| Initialize MASRequest using MASRequestBuilder block and defining the request method as a HTTP DELETE call. This type of HTTP Method type | ||
| places it's parameters within the NSURL itself as an HTTP query extension. |
jhoongo
reviewed
Sep 7, 2017
|
|
||
| /** | ||
| Initialize MASRequest using MASRequestBuilder block and defining the request method as a HTTP GET call. This type of HTTP Method type | ||
| places it's parameters within the NSURL itself as an HTTP query extension. |
jhoongo
reviewed
Sep 7, 2017
|
|
||
| /** | ||
| Initialize MASRequest using MASRequestBuilder block and defining the request method as a HTTP PATCH call. This type of HTTP Method type | ||
| places it's parameters within the HTTP body in www-form-url-encoded format. |
jhoongo
reviewed
Sep 7, 2017
|
|
||
| /** | ||
| Initialize MASRequest using MASRequestBuilder block and defining the request method as a HTTP POST call. This type of HTTP Method type | ||
| places it's parameters within the HTTP body in www-form-url-encoded format. |
jhoongo
reviewed
Sep 7, 2017
|
|
||
| /** | ||
| Initialize MASRequest using MASRequestBuilder block and defining the request method as a HTTP PUT call. This type of HTTP Method type | ||
| places it's parameters within the HTTP body in www-form-url-encoded format. |
jhoongo
reviewed
Sep 7, 2017
|
|
||
| /** | ||
| MASRequestBuilder class is an object that allows developers to progressively build a request as needed. | ||
| The class is mainly responsible for receive parameters and create a MASRequest object. |
Contributor
There was a problem hiding this comment.
to receive parameters and create a MASRequest object.
jhoongo
reviewed
Sep 7, 2017
| @property (nonatomic, strong, readonly) NSString *httpMethod; | ||
|
|
||
| /** | ||
| BOOL value that determines whether or not the target host is a primary gateway or another gateway/public server. |
Contributor
There was a problem hiding this comment.
BOOL value that determines whether or not to include credentials of primary gateway in the request.
added 2 commits
October 16, 2017 17:33
# Conflicts: # MASFoundation.xcodeproj/project.pbxproj
jhoongo
pushed a commit
that referenced
this pull request
Oct 17, 2017
Merge pull request #84 from CAAPIM/US374082-RequestBuilder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…r Interface to align with Android