-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #272 from kbss-cvut/development
[3.1.1] Release
- Loading branch information
Showing
73 changed files
with
818 additions
and
602 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
98 changes: 0 additions & 98 deletions
98
src/main/java/cz/cvut/kbss/termit/aspect/ChangeTrackingAspect.java
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
src/main/java/cz/cvut/kbss/termit/aspect/RefreshLastModifiedAspect.java
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
src/main/java/cz/cvut/kbss/termit/aspect/VocabularyContentModificationAspect.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/java/cz/cvut/kbss/termit/event/AssetPersistEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package cz.cvut.kbss.termit.event; | ||
|
||
import cz.cvut.kbss.termit.model.Asset; | ||
import org.springframework.context.ApplicationEvent; | ||
|
||
/** | ||
* Event published when an asset is persisted. | ||
*/ | ||
public class AssetPersistEvent extends ApplicationEvent { | ||
|
||
private final Asset<?> asset; | ||
|
||
public AssetPersistEvent(Object source, Asset<?> asset) { | ||
super(source); | ||
this.asset = asset; | ||
} | ||
|
||
public Asset<?> getAsset() { | ||
return asset; | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
src/main/java/cz/cvut/kbss/termit/event/AssetUpdateEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package cz.cvut.kbss.termit.event; | ||
|
||
import cz.cvut.kbss.termit.model.Asset; | ||
import org.springframework.context.ApplicationEvent; | ||
|
||
/** | ||
* Event published when an asset is updated. | ||
*/ | ||
public class AssetUpdateEvent extends ApplicationEvent { | ||
|
||
private final Asset<?> asset; | ||
|
||
public AssetUpdateEvent(Object source, Asset<?> asset) { | ||
super(source); | ||
this.asset = asset; | ||
} | ||
|
||
public Asset<?> getAsset() { | ||
return asset; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.