Skip to content

Commit

Permalink
「する」を「します」に修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjiyoshid-a committed Jan 14, 2025
1 parent b6e5668 commit c78fde9
Show file tree
Hide file tree
Showing 14 changed files with 34 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
},
"/api/assets/{assetCode}": {
"get": {
"description": "与えられたアセットコードに対応するアセットを返却する",
"description": "与えられたアセットコードに対応するアセットを返却します",
"operationId": "get",
"parameters": [
{
Expand Down Expand Up @@ -142,15 +142,15 @@
"description": "サーバーエラー。"
}
},
"summary": "アセットを取得する",
"summary": "アセットを取得します",
"tags": [
"Assets"
]
}
},
"/api/catalog-brands": {
"get": {
"description": "カタログブランドの一覧を取得する",
"description": "カタログブランドの一覧を取得します",
"operationId": "getCatalogBrands",
"responses": {
"200": {
Expand All @@ -173,7 +173,7 @@
"description": "サーバーエラー。"
}
},
"summary": "カタログブランドの一覧を取得する",
"summary": "カタログブランドの一覧を取得します",
"tags": [
"CatalogBrands"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
},
"/api/assets/{assetCode}": {
"get": {
"description": "与えられたアセットコードに対応するアセットを返却する",
"description": "与えられたアセットコードに対応するアセットを返却します",
"operationId": "get",
"parameters": [
{
Expand Down Expand Up @@ -135,15 +135,15 @@
"description": "アセットコードに対応するアセットがない。"
}
},
"summary": "アセットを取得する",
"summary": "アセットを取得します",
"tags": [
"Assets"
]
}
},
"/api/basket-items": {
"get": {
"description": "買い物かごアイテムの一覧を返却する",
"description": "買い物かごアイテムの一覧を返却します",
"operationId": "getBasketItems",
"responses": {
"200": {
Expand All @@ -157,7 +157,7 @@
"description": "成功。"
}
},
"summary": "買い物かごアイテムの一覧を取得する",
"summary": "買い物かごアイテムの一覧を取得します",
"tags": [
"BasketItems"
]
Expand Down Expand Up @@ -290,7 +290,7 @@
},
"/api/catalog-brands": {
"get": {
"description": "カタログブランドの一覧を取得する",
"description": "カタログブランドの一覧を取得します",
"operationId": "getCatalogBrands",
"responses": {
"200": {
Expand All @@ -307,7 +307,7 @@
"description": "成功。"
}
},
"summary": "カタログブランドの一覧を取得する",
"summary": "カタログブランドの一覧を取得します",
"tags": [
"CatalogBrands"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void initJobLauncherTestUtils() {
}

/**
* 各テストを実施する前のセットアップメソッド
* 各テストを実施する前のセットアップメソッドです
*
* @throws IOException 例外エラー。
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class AssetsController {
* @param assetCode アセットコード。
* @return アセット。
*/
@Operation(summary = "アセットを取得する。", description = "与えられたアセットコードに対応するアセットを返却する。")
@Operation(summary = "アセットを取得します。", description = "与えられたアセットコードに対応するアセットを返却します。")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "成功。", content = @Content(mediaType = "image/*", schema = @Schema(implementation = Resource.class))),
@ApiResponse(responseCode = "401", description = "未認証。", content = @Content),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class CatalogBrandsController {
*
* @return カタログブランドの一覧
*/
@Operation(summary = "カタログブランドの一覧を取得する。", description = "カタログブランドの一覧を取得する。")
@Operation(summary = "カタログブランドの一覧を取得します。", description = "カタログブランドの一覧を取得します。")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "成功。", content = @Content(mediaType = "application/json", array = @ArraySchema(schema = @Schema(implementation = GetCatalogBrandsResponse.class)))),
@ApiResponse(responseCode = "401", description = "未認証。", content = @Content),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public ResponseEntity<CatalogItem> postCatalogItem(@RequestBody PostCatalogItemR
return ResponseEntity.created(URI.create("/api/catalog-items/" + addedCatalogItem.getId())).build();
} catch (CatalogBrandNotFoundException | CatalogCategoryNotFoundException e) {
apLog.error(ExceptionUtils.getStackTrace(e));
// ここでは発生を想定していないので、システムエラーとする
// ここでは発生を想定していないので、システムエラーとします
throw new SystemException(e, CommonExceptionIdConstants.E_SYSTEM, null, null);
}
}
Expand Down Expand Up @@ -221,7 +221,7 @@ public ResponseEntity<?> putCatalogItem(@PathVariable("catalogItemId") long cata
return ResponseEntity.notFound().build();
} catch (CatalogBrandNotFoundException | CatalogCategoryNotFoundException e) {
apLog.error(ExceptionUtils.getStackTrace(e));
// ここでは発生を想定していないので、システムエラーとする
// ここでは発生を想定していないので、システムエラーとします
throw new SystemException(e, CommonExceptionIdConstants.E_SYSTEM, null, null);
}
return ResponseEntity.noContent().build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
* ダミーユーザーを SecurityContextHolder に詰めるためのフィルタークラスです。
*
* <p>
* 開発環境においてユーザ名が [email protected]権限が管理者のユーザでアクセスしたことにして認証プロセスをスキップするために使用する
* 開発環境においてユーザ名が [email protected]権限が管理者のユーザでアクセスしたことにして認証プロセスをスキップするために使用します
* また、本フィルターは WebSecurityConfig にて、セキュリティフィルターチェーンの
* UsernamePasswordAuthenticationFilter の前に挿入する
* UsernamePasswordAuthenticationFilter の前に挿入します
* </p>
*/
@Profile("local")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class AssetsController {
* @param assetCode アセットコード。
* @return アセット。
*/
@Operation(summary = "アセットを取得する。", description = "与えられたアセットコードに対応するアセットを返却する。")
@Operation(summary = "アセットを取得します。", description = "与えられたアセットコードに対応するアセットを返却します。")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "成功。", content = @Content(mediaType = "image/*", schema = @Schema(implementation = Resource.class))),
@ApiResponse(responseCode = "404", description = "アセットコードに対応するアセットがない。", content = @Content(mediaType = "application/problem+json", schema = @Schema(implementation = ProblemDetail.class)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class BasketItemController {
*
* @return 買い物かごアイテムの一覧。
*/
@Operation(summary = "買い物かごアイテムの一覧を取得する。", description = "買い物かごアイテムの一覧を返却する。")
@Operation(summary = "買い物かごアイテムの一覧を取得します。", description = "買い物かごアイテムの一覧を返却します。")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "成功。", content = @Content(mediaType = "application/json", schema = @Schema(implementation = BasketResponse.class))) })
@GetMapping
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class CatalogBrandsController {
*
* @return カタログブランドの一覧。
*/
@Operation(summary = "カタログブランドの一覧を取得する。", description = "カタログブランドの一覧を取得する。")
@Operation(summary = "カタログブランドの一覧を取得します。", description = "カタログブランドの一覧を取得します。")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "成功。", content = @Content(mediaType = "application/json", array = @ArraySchema(schema = @Schema(implementation = CatalogBrandResponse.class)))) })
@GetMapping()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class ExceptionHandlerControllerAdvice extends ResponseEntityExceptionHan
private ProblemDetailsFactory problemDetailsFactory;

/**
* 未認証エラーをステータスコード 401 で返却する
* 未認証エラーをステータスコード 401 で返却します
*
* @param e 未認証エラー。
* @param req リクエスト。
Expand All @@ -48,7 +48,7 @@ public ResponseEntity<String> handleAuthenticationCredentialsNotFoundException(
}

/**
* 認可エラーをステータスコード 404 で返却する
* 認可エラーをステータスコード 404 で返却します
*
* @param e 認可エラー。
* @param req リクエスト。
Expand All @@ -62,7 +62,7 @@ public ResponseEntity<String> handleAuthorizationDeniedException(
}

/**
* 楽観ロックエラーをステータスコード 409 で返却する
* 楽観ロックエラーをステータスコード 409 で返却します
*
* @param e 楽観ロックエラー。
* @param req リクエスト。
Expand All @@ -76,7 +76,7 @@ public ResponseEntity<String> handleOptimisticLockingFailureException(
}

/**
* その他の業務エラーをステータースコード 500 で返却する
* その他の業務エラーをステータースコード 500 で返却します
*
* @param e 業務例外。
* @param req リクエスト。
Expand All @@ -96,7 +96,7 @@ public ResponseEntity<ProblemDetail> handleLogicException(LogicException e, Http
}

/**
* その他のシステムエラーをステータースコード 500 で返却する
* その他のシステムエラーをステータースコード 500 で返却します
*
* @param e その他の例外。
* @param req リクエスト。
Expand All @@ -116,7 +116,7 @@ public ResponseEntity<ProblemDetail> handleSystemException(SystemException e, Ht
}

/**
* 上記のいずれにも当てはまらない例外をステータースコード 500 で返却する
* 上記のいずれにも当てはまらない例外をステータースコード 500 で返却します
*
* @param e その他の例外。
* @param req リクエスト。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class LocalExceptionHandlerControllerAdvice extends ResponseEntityExcepti
private ProblemDetailsFactory problemDetailsFactory;

/**
* 未認証エラーをステータスコード 401 で返却する
* 未認証エラーをステータスコード 401 で返却します
*
* @param e 未認証エラー。
* @param req リクエスト。
Expand All @@ -48,7 +48,7 @@ public ResponseEntity<String> handleAuthenticationCredentialsNotFoundException(
}

/**
* 認可エラーをステータスコード 404 で返却する
* 認可エラーをステータスコード 404 で返却します
*
* @param e 認可エラー。
* @param req リクエスト。
Expand All @@ -62,7 +62,7 @@ public ResponseEntity<String> handleAuthorizationDeniedException(
}

/**
* 楽観ロックエラーをステータスコード 409 で返却する
* 楽観ロックエラーをステータスコード 409 で返却します
*
* @param e 楽観ロックエラー。
* @param req リクエスト。
Expand All @@ -76,7 +76,7 @@ public ResponseEntity<String> handleOptimisticLockingFailureException(
}

/**
* その他の業務エラーをステータースコード 500 で返却する
* その他の業務エラーをステータースコード 500 で返却します
*
* @param e 業務例外。
* @param req リクエスト。
Expand All @@ -96,7 +96,7 @@ public ResponseEntity<ProblemDetail> handleLogicException(LogicException e, Http
}

/**
* その他のシステムエラーをステータースコード 500 で返却する
* その他のシステムエラーをステータースコード 500 で返却します
*
* @param e その他の例外。
* @param req リクエスト。
Expand All @@ -116,7 +116,7 @@ public ResponseEntity<ProblemDetail> handleSystemException(SystemException e, Ht
}

/**
* 上記のいずれにも当てはまらない例外をステータースコード 500 で返却する
* 上記のいずれにも当てはまらない例外をステータースコード 500 で返却します
*
* @param e その他の例外。
* @param req リクエスト。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class ProblemDetailsFactory {
private MessageSource messages;

/**
* エラーレスポンスに含める ProblemDetails を作成する
* エラーレスポンスに含める ProblemDetails を作成します
*
* @param errorBuilder 例外ビルダー。
* @param titleId タイトルのメッセージ ID 。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class AssetsController {
* @param assetCode アセットコード。
* @return アセット。
*/
@Operation(summary = "アセットを取得する。", description = "与えられたアセットコードに対応するアセットを返却する。")
@Operation(summary = "アセットを取得します。", description = "与えられたアセットコードに対応するアセットを返却します。")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "成功。", content = @Content(mediaType = "image/*", schema = @Schema(implementation = Resource.class))),
@ApiResponse(responseCode = "404", description = "アセットコードに対応するアセットがない。", content = @Content(mediaType = "application/problem+json", schema = @Schema(implementation = ProblemDetail.class)))
Expand Down

0 comments on commit c78fde9

Please sign in to comment.