Created
February 24, 2017 00:28
-
-
Save willh/cb68cad2486565d87d4d3d7f961e1e05 to your computer and use it in GitHub Desktop.
This file contains 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
package com.willhamill.lambda.apigateway; | |
public class RequestContext { | |
private String accountId; | |
private String resourceId; | |
private String stage; | |
private String requestId; | |
private Identity identity; | |
private String resourcePath; | |
private String httpMethod; | |
private String apiId; | |
public String getAccountId() { | |
return accountId; | |
} | |
public void setAccountId(String accountId) { | |
this.accountId = accountId; | |
} | |
public String getResourceId() { | |
return resourceId; | |
} | |
public void setResourceId(String resourceId) { | |
this.resourceId = resourceId; | |
} | |
public String getStage() { | |
return stage; | |
} | |
public void setStage(String stage) { | |
this.stage = stage; | |
} | |
public String getRequestId() { | |
return requestId; | |
} | |
public void setRequestId(String requestId) { | |
this.requestId = requestId; | |
} | |
public Identity getIdentity() { | |
return identity; | |
} | |
public void setIdentity(Identity identity) { | |
this.identity = identity; | |
} | |
public String getResourcePath() { | |
return resourcePath; | |
} | |
public void setResourcePath(String resourcePath) { | |
this.resourcePath = resourcePath; | |
} | |
public String getHttpMethod() { | |
return httpMethod; | |
} | |
public void setHttpMethod(String httpMethod) { | |
this.httpMethod = httpMethod; | |
} | |
public String getApiId() { | |
return apiId; | |
} | |
public void setApiId(String apiId) { | |
this.apiId = apiId; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment