File tree 2 files changed +8
-0
lines changed
consumer/pact-jvm-consumer-java8/src/main/java/io/pactfoundation/consumer/dsl
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ public class LambdaDslJsonArray {
20
20
this .pactArray = pactArray ;
21
21
}
22
22
23
+ public PactDslJsonArray getPactDslJsonArray () {
24
+ return pactArray ;
25
+ }
26
+
23
27
public LambdaDslJsonArray object (final Consumer <LambdaDslObject > o ) {
24
28
final PactDslJsonBody pactObject = pactArray .object ();
25
29
LambdaDslObject object = new LambdaDslObject (pactObject );
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ public class LambdaDslObject {
21
21
this .object = object ;
22
22
}
23
23
24
+ public PactDslJsonBody getPactDslObject () {
25
+ return object ;
26
+ }
27
+
24
28
public LambdaDslObject stringValue (final String name , final String value ) {
25
29
object .stringValue (name , value );
26
30
return this ;
You can’t perform that action at this time.
0 commit comments