예제 #1
0
파일: Note.java 프로젝트: conker84/zeppelin
 public void persist(AuthenticationInfo subject) throws IOException {
   Preconditions.checkNotNull(subject, "AuthenticationInfo should not be null");
   stopDelayedPersistTimer();
   snapshotAngularObjectRegistry(subject.getUser());
   index.updateIndexDoc(this);
   repo.save(this, subject);
 }
예제 #2
0
파일: Note.java 프로젝트: bcajes/zeppelin-R
 public void persist() throws IOException {
   snapshotAngularObjectRegistry();
   repo.save(this);
 }