Skip to content

Commit

Permalink
Merge pull request #31 from fredoche/patch-1
Browse files Browse the repository at this point in the history
Merging to address #39
  • Loading branch information
sapessi authored Jun 22, 2017
2 parents 05a5058 + 434f6ac commit c29d283
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public class ApiGatewayRequestContext {
private ApiGatewayRequestIdentity identity;
private ApiGatewayAuthorizerContext authorizer;
private String stage;
private String path;


//-------------------------------------------------------------
Expand Down Expand Up @@ -119,6 +120,15 @@ public String getStage() {
public void setStage(String stage) {
this.stage = stage;
}

public String getPath() {
return path;
}


public void setPath(String path) {
this.path = path;
}


public ApiGatewayAuthorizerContext getAuthorizer() {
Expand Down

0 comments on commit c29d283

Please sign in to comment.