Skip to content

Commit

Permalink
security work for read only operations
Browse files Browse the repository at this point in the history
  • Loading branch information
eparaschiv committed Dec 14, 2012
1 parent 14a285e commit 08ca87b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,10 @@ public final Pair<String, String> getDefaultCredentials() {
return new ImmutablePair<String, String>(SecurityConstants.ADMIN_EMAIL, SecurityConstants.ADMIN_PASS);
}

@Override
protected void beforeReadOperation() {
givenAuthenticated();
super.beforeReadOperation();
}

}

0 comments on commit 08ca87b

Please sign in to comment.