-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
860d2d5
commit 55a2346
Showing
3 changed files
with
7 additions
and
4 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
3 changes: 2 additions & 1 deletion
3
src/main/java/edu/stanford/protege/webprotege/project/CreateBackupOwlFileResponse.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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
package edu.stanford.protege.webprotege.project; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
import edu.stanford.protege.webprotege.common.Response; | ||
import edu.stanford.protege.webprotege.dispatch.Result; | ||
|
||
import static edu.stanford.protege.webprotege.project.CreateBackupOwlFileAction.CHANNEL; | ||
|
||
@JsonTypeName(CHANNEL) | ||
public record CreateBackupOwlFileResponse() implements Result, Response { | ||
public record CreateBackupOwlFileResponse(@JsonProperty("owlFileBackupLocation") String owlFileBackupLocation) implements Result, Response { | ||
} |
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