1 package org.exoplatform.services.security; 2 3 import javax.security.auth.Subject ; 4 5 10 public interface SubjectEventListener { 11 12 public void preSave(Subject subject, boolean isNew) throws Exception ; 13 public void postSave(Subject subject, boolean isNew) throws Exception ; 14 15 public void preDelete(Subject subject) throws Exception ; 16 public void postDelete(Subject subject) throws Exception ; 17 18 } 19 | Popular Tags |