Skip to content

Commit

Permalink
Updating the javadoc comment to indicate how the setURIProperty diffe…
Browse files Browse the repository at this point in the history
…rs from other functionality, and what the tradeoff is
  • Loading branch information
escowles committed Apr 23, 2015
1 parent 0a7b1d4 commit d6acc3e
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -263,6 +263,14 @@ public Property getProperty(final String relPath) {
}
}

/**
* Set the given property value for this resource as a URI, without translating any URIs that
* appear to be references to repository resources. Using untranslated URIs to refer to
* repository resources will disable referential integrity checking, but also allows referring
* to resources that do not exist, have been deleted, etc.
* @param relPath the given path
* @param value the URI value
*/
@Override
public void setURIProperty(final String relPath, final URI value) {
try {
Expand Down

0 comments on commit d6acc3e

Please sign in to comment.