else throw new IOException("User " + getCurrentUser().getFullName() + " cannot read SequencerPartitionContainer " + containerId);
}
@Override
public Note getNoteById(long noteId) throws IOException {
Note o = super.getNoteById(noteId);
User user = getCurrentUser();
if (o.getOwner().equals(user) || (o.isInternalOnly() && user.isInternal())) return o;
else throw new IOException("User " + getCurrentUser().getFullName() + " cannot read Note " + o.getNoteId());
}