Skip to content

Commit

Permalink
Refactors Chain into Interceptions (#14)
Browse files Browse the repository at this point in the history
* Refactors Chain into Interceptions

Signed-off-by: Laird Nelson <[email protected]>

* Squashable commit; general improvements and documentation

Signed-off-by: Laird Nelson <[email protected]>

---------

Signed-off-by: Laird Nelson <[email protected]>
  • Loading branch information
ljnelson authored Apr 19, 2024
1 parent 3911f70 commit b7c032b
Show file tree
Hide file tree
Showing 9 changed files with 1,178 additions and 1,085 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Maven dependency:
<groupId>org.microbean</groupId>
<artifactId>microbean-interceptor</artifactId>
<!-- Always check https://search.maven.org/artifact/org.microbean/microbean-interceptor for up-to-date available versions. -->
<version>0.3.0</version>
<version>0.4.0</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.microbean</groupId>
<artifactId>microbean-interceptor</artifactId>
<version>0.3.1-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>

<parent>
<groupId>org.microbean</groupId>
Expand Down Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>jakarta.interceptor</groupId>
<artifactId>jakarta.interceptor-api</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
</dependency>


Expand Down Expand Up @@ -281,7 +281,7 @@

<!-- maven-javadoc-plugin properties -->
<detectJavaApiLink>false</detectJavaApiLink>
<links>https://docs.oracle.com/en/java/javase/11/docs/api,https://jakarta.ee/specifications/interceptors/2.1/apidocs/</links>
<links>https://docs.oracle.com/en/java/javase/11/docs/api,https://jakarta.ee/specifications/interceptors/2.2/apidocs/</links>

<!-- maven-release-plugin properties; see https://maven.apache.org/maven-release/maven-release-plugin/ -->
<goals>deploy,post-site,scm-publish:publish-scm</goals>
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/org/microbean/interceptor/Chain.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@
* @author <a href="https://about.me/lairdnelson/" target="_top">Laird Nelson</a>
*
* @see #proceed()
*
* @deprecated See {@link Interceptions}.
*/
@Deprecated(forRemoval = true)
public class Chain implements Callable<Object>, InvocationContext {


Expand Down
Loading

0 comments on commit b7c032b

Please sign in to comment.