-
-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #692 from Mogztter/issue-689-delegate-ditaa
resolves #689 delegate to ditaa
- Loading branch information
Showing
4 changed files
with
277 additions
and
10 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
server/src/main/java/io/kroki/server/action/DitaaContext.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.kroki.server.action; | ||
|
||
public class DitaaContext { | ||
|
||
private final String source; | ||
private final String options; | ||
|
||
public DitaaContext(String source, String options) { | ||
this.source = source; | ||
this.options = options; | ||
} | ||
|
||
public String getSource() { | ||
return source; | ||
} | ||
|
||
public String getOptions() { | ||
return options; | ||
} | ||
} |
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
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
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