Skip to content

Commit 9a4f679

Browse files
authored
Merge pull request #88 from networknt/issue87
fixes #87 update LambdaAppConfig to add constructor and set method
2 parents 72a3216 + 030c02d commit 9a4f679

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/com/networknt/aws/lambda/app/LambdaAppConfig.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ public class LambdaAppConfig {
44
public static final String CONFIG_NAME = "lambda-app";
55
private String lambdaAppId;
66

7+
public LambdaAppConfig() {
8+
}
9+
710
public String getLambdaAppId() {
811
return lambdaAppId;
912
}
1013

14+
public void setLambdaAppId(String lambdaAppId) {
15+
this.lambdaAppId = lambdaAppId;
16+
}
1117
}

0 commit comments

Comments
 (0)