Skip to content

Commit

Permalink
Fixes #4 Wrong OperationName in ExecuteRequest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bpross-52n committed May 19, 2017
1 parent e3b7a99 commit 839bc05
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ public class ExecuteRequest extends OwsServiceRequest {
private final List<OutputDefinition> outputs = new LinkedList<>();

public ExecuteRequest() {
super(null, null, WPSConstants.Operations.Dismiss.name());
super(null, null, WPSConstants.Operations.Execute.name());
}

public ExecuteRequest(String service, String version) {
super(service, version, WPSConstants.Operations.Dismiss.name());
super(service, version, WPSConstants.Operations.Execute.name());
}

public ExecuteRequest(String service, String version, String operationName) {
Expand Down

0 comments on commit 839bc05

Please sign in to comment.