Skip to content

Commit

Permalink
fix(property): No visibility for extension
Browse files Browse the repository at this point in the history
Expose both the Property class and the property field within the RequestEntity.

Closes americanexpress#114
  • Loading branch information
Joseph M. Pasque authored and Joseph M. Pasque committed Aug 17, 2020
1 parent 9bc0d44 commit 1778aa6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ public Map<String, Object> getVariables() {
public List<Class> getScalars() {
return scalars;
}

public Property getProperty() {
return property;
}

public void setRequestMethod(GraphQLTemplate.GraphQLMethod requestMethod) {
this.requestMethod = requestMethod;
Expand Down
2 changes: 1 addition & 1 deletion nodes/src/main/java/io/aexp/nodes/graphql/Property.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.util.List;
import java.util.Map;

final class Property {
public final class Property {

private String resourceName;
private GraphQLTemplate.GraphQLMethod method;
Expand Down

0 comments on commit 1778aa6

Please sign in to comment.