Skip to content

Commit

Permalink
SHIBUI-1788
Browse files Browse the repository at this point in the history
missed add from commit
  • Loading branch information
chasegawa committed Jun 10, 2021
1 parent e3e0ca3 commit c1a909b
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package edu.internet2.tier.shibboleth.admin.ui.service.events;

import org.springframework.context.ApplicationEvent;

/**
* The event could be any operation (new, update, delete).
*/
public class CustomEntityAttributeDefinitionChangeEvent extends ApplicationEvent {
private static final long serialVersionUID = 1L;

public CustomEntityAttributeDefinitionChangeEvent(Object source) {
super(source);
}

}

0 comments on commit c1a909b

Please sign in to comment.