Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release-6u2'
Browse files Browse the repository at this point in the history
  • Loading branch information
oguchi-shiori03 committed Sep 27, 2024
2 parents b12dbb3 + e8dd0d1 commit 3cbb252
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.nablarch.integration</groupId>
<artifactId>nablarch-router-adaptor</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>

<scm>
<connection>scm:git:git://github.com/nablarch/${project.artifactId}.git</connection>
Expand All @@ -16,7 +16,7 @@
<parent>
<groupId>com.nablarch</groupId>
<artifactId>nablarch-parent</artifactId>
<version>6</version>
<version>6u2</version>
</parent>

<dependencies>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/nablarch/integration/router/PathOptions.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
package nablarch.integration.router;

import nablarch.core.util.annotation.Published;
import net.unit8.http.router.Options;

/**
* パスと、それに割り当てられている {@link Options} のセット。
*
* @author Tanaka Tomoyuki
*/
@Published(tag = "architect")
public class PathOptions {
private final String path;
private final Options options;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
package nablarch.integration.router;

import nablarch.core.util.annotation.Published;

import java.util.List;

/**
* ログに出力するために {@link PathOptions} をフォーマットする機能を提供するインターフェース。
*
* @author Tanaka Tomoyuki
*/
@Published(tag = "architect")
public interface PathOptionsFormatter {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* {@link NablarchControllerDetector}も合わせてテストします。
* <p>
* ルーティングライブラリの仕様は以下を見てください。<br>
* https://github.com/kawasima/sastruts-advanced-routes/blob/master/README.ja.md
* https://github.com/kawasima/http-request-router/blob/master/README.ja.md
*/
public class RoutesMappingTest {

Expand Down

0 comments on commit 3cbb252

Please sign in to comment.