Skip to content

Commit

Permalink
[Upd] Improve documentation of deploy module
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham committed Jul 31, 2023
1 parent 8aae15c commit 8fbd17a
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
import java.io.StringWriter;
import java.util.Optional;

/**
* Module deploys content of input execution context
* into default context of repository (if p-rdf4j-context-iri is not specified)
* or concrete context (if p-rdf4j-context-iri is specified).
*/
public class Rdf4jDeployModule extends AbstractModule {

private static final Logger LOG = LoggerFactory.getLogger(Rdf4jDeployModule.class);
Expand Down Expand Up @@ -64,7 +69,8 @@ private static Property getParameter(final String name) {
static final Property P_RDF4J_REPOSITORY_PASSWORD = getParameter("p-rdf4j-secured-password-variable");
private String rdf4jSecuredPasswordVariable;
/**
* Whether the context should be replaced (true) or just enriched (false).
* Whether data should be replaced (true) / appended (false) into the specified context or repository.
* Default is false.
*/
static final Property P_IS_REPLACE_CONTEXT_IRI = getParameter("p-is-replace");
private boolean isReplaceContext;
Expand Down

0 comments on commit 8fbd17a

Please sign in to comment.