-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10968 from patriot1burke/funqy-query-param
Funqy HTTP query parameter binding
- Loading branch information
Showing
37 changed files
with
1,825 additions
and
114 deletions.
There are no files selected for viewing
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
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
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
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
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
13 changes: 13 additions & 0 deletions
13
...ions/funqy/funqy-amazon-lambda/runtime/src/main/resources/META-INF/quarkus-extension.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: "Funqy AWS Lambda Binding" | ||
metadata: | ||
keywords: | ||
- "funqy" | ||
- "function" | ||
- "lambda" | ||
- "aws" | ||
- "amazon" | ||
guide: "https://quarkus.io/guides/funqy-amazon-lambda" | ||
categories: | ||
- "cloud" | ||
status: "experimental" |
22 changes: 22 additions & 0 deletions
22
extensions/funqy/funqy-http/deployment/src/test/java/io/quarkus/funqy/test/Nested.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package io.quarkus.funqy.test; | ||
|
||
public class Nested { | ||
private Simple nestedOne; | ||
private Simple nestedTwo; | ||
|
||
public Simple getNestedOne() { | ||
return nestedOne; | ||
} | ||
|
||
public void setNestedOne(Simple nestedOne) { | ||
this.nestedOne = nestedOne; | ||
} | ||
|
||
public Simple getNestedTwo() { | ||
return nestedTwo; | ||
} | ||
|
||
public void setNestedTwo(Simple nestedTwo) { | ||
this.nestedTwo = nestedTwo; | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
...ons/funqy/funqy-http/deployment/src/test/java/io/quarkus/funqy/test/NestedCollection.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package io.quarkus.funqy.test; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class NestedCollection { | ||
private Map<String, Integer> intMap; | ||
private Map<Integer, String> intKeyMap; | ||
private Map<String, Simple> simpleMap; | ||
private List<String> stringList; | ||
private List<Simple> simpleList; | ||
|
||
public Map<Integer, String> getIntKeyMap() { | ||
return intKeyMap; | ||
} | ||
|
||
public void setIntKeyMap(Map<Integer, String> intKeyMap) { | ||
this.intKeyMap = intKeyMap; | ||
} | ||
|
||
public Map<String, Integer> getIntMap() { | ||
return intMap; | ||
} | ||
|
||
public void setIntMap(Map<String, Integer> intMap) { | ||
this.intMap = intMap; | ||
} | ||
|
||
public Map<String, Simple> getSimpleMap() { | ||
return simpleMap; | ||
} | ||
|
||
public void setSimpleMap(Map<String, Simple> simpleMap) { | ||
this.simpleMap = simpleMap; | ||
} | ||
|
||
public List<String> getStringList() { | ||
return stringList; | ||
} | ||
|
||
public void setStringList(List<String> stringList) { | ||
this.stringList = stringList; | ||
} | ||
|
||
public List<Simple> getSimpleList() { | ||
return simpleList; | ||
} | ||
|
||
public void setSimpleList(List<Simple> simpleList) { | ||
this.simpleList = simpleList; | ||
} | ||
} |
Oops, something went wrong.