Skip to content

Commit c29d283

Browse files
authored
Merge pull request #31 from fredoche/patch-1
Merging to address #39
2 parents 05a5058 + 434f6ac commit c29d283

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

aws-serverless-java-container-core/src/main/java/com/amazonaws/serverless/proxy/internal/model/ApiGatewayRequestContext.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public class ApiGatewayRequestContext {
3535
private ApiGatewayRequestIdentity identity;
3636
private ApiGatewayAuthorizerContext authorizer;
3737
private String stage;
38+
private String path;
3839

3940

4041
//-------------------------------------------------------------
@@ -119,6 +120,15 @@ public String getStage() {
119120
public void setStage(String stage) {
120121
this.stage = stage;
121122
}
123+
124+
public String getPath() {
125+
return path;
126+
}
127+
128+
129+
public void setPath(String path) {
130+
this.path = path;
131+
}
122132

123133

124134
public ApiGatewayAuthorizerContext getAuthorizer() {

0 commit comments

Comments
 (0)