Skip to content

Commit

Permalink
merge: fixed merged changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Brunkow Moser committed Oct 31, 2023
1 parent 5e4dd79 commit 31365be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,18 +356,6 @@ private String getTmpProcessDir(String processId, Boolean absolute) {
}
}

/**
* Creates a new process in the given HTTP session.
* <p>
* @param httpRequest
* the HTTP request.
*
* @return a {@code Process} object representing the created process.
*
*/
public Process createProcess(HttpServletRequest httpRequest) {
return this.createProcess(httpRequest, "", "");
}

/**
* Creates a new process in the given HTTP session and set its status in the file system logs.
Expand All @@ -380,7 +368,7 @@ public Process createProcess(HttpServletRequest httpRequest) {
* @return a {@code Process} object representing the created process.
*
*/
public Process createProcess(HttpServletRequest httpRequest, String connectorAddress, String dataPlaneUrl) {
public Process createProcess(HttpServletRequest httpRequest, String connectorAddress) {
Long createdTime = DateTimeUtil.getTimestamp();
Process process = new Process(CrypUtil.getUUID(), "CREATED", createdTime);
LogUtil.printMessage("Process Created [" + process.id + "], waiting for user to sign or decline...");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,14 +318,6 @@ public void setSemanticId(String semanticId) {
this.semanticId = semanticId;
}

public String getDataPlaneUrl() {
return dataPlaneUrl;
}

public void setDataPlaneUrl(String dataPlaneUrl) {
this.dataPlaneUrl = dataPlaneUrl;
}

public JobHistory getJob() {
return job;
}
Expand Down

0 comments on commit 31365be

Please sign in to comment.