Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e535c3d
KW-659/feat: Mediator, Hospital WebClient κ΅¬ν˜„
willjsw Jun 12, 2025
82a623e
KW-659/feat: redis μ˜μ‘΄μ„± μΆ”κ°€
willjsw Jun 12, 2025
f5df495
KW-659/feat: grpc pass-interface & acapy-interface v0.3.3 적용
willjsw Jun 16, 2025
4a6c4af
KW-659/feat: webflux yml config μΆ”κ°€
willjsw Jun 16, 2025
0c484bf
KW-659/feat: redis property μΆ”κ°€
willjsw Jun 16, 2025
05fd3ff
KW-659/feat: acapy errorcode μΆ”κ°€
willjsw Jun 16, 2025
a96abbe
KW-659/feat: hospital invitation req/res, mediator res dto κ΅¬ν˜„
willjsw Jun 16, 2025
28436de
KW-659/feat: MemberConnection redis 도메인 섀계 및 MVC κ΅¬ν˜„
willjsw Jun 16, 2025
fd56b30
KW-659/feat: connectionStatus κ΅¬ν˜„
willjsw Jun 16, 2025
e1873da
KW-659/feat: HospitalInvitation redis 도메인 κ΅¬ν˜„ 및 repository κ΅¬ν˜„, acapyCl…
willjsw Jun 16, 2025
eae5f8c
KW-659/refactor: did 생성 μ„œλΉ„μŠ€ 둜직 디렉토리 μˆ˜μ •/μ˜μ‘΄μ„± μˆ˜μ •
willjsw Jun 16, 2025
6557ac4
KW-659/feat: grpc interface λͺ¨λ“ˆ μΆ”κ°€(server: acapy, client: tenant, pass)
willjsw Jun 16, 2025
8e074c3
KW-659/refactor: test용 ν•˜λ“œμ½”λ”©λœ tenantId -> tenantClientμ—μ„œ 직접 호좜 및 λ³€ν™˜
willjsw Jun 16, 2025
262994c
KW-659/refactor: config & build.gradle 배포 ν™˜κ²½ μ„€μ •μœΌλ‘œ λ³€κ²½
willjsw Jun 16, 2025
332f715
KW-659/refactor:λ―Έμ‚¬μš© datasource ν”„λ‘œν•„ 제거
willjsw Jun 16, 2025
cf1436d
KW-659/fix: invitation/did 생성 였λ₯˜ 400 -> 500 μ—λŸ¬λ‘œ μˆ˜μ •
willjsw Jun 16, 2025
a0f7110
KW-659/fix: μ˜€νƒ€ μˆ˜μ •
willjsw Jun 16, 2025
f16e35a
KW-659/refactor: gRPC Clients try-catch 처리
willjsw Jun 16, 2025
6e9ecc4
KW-659/refactor: memberPollController convention μˆ˜μ •
willjsw Jun 16, 2025
41bb1b9
KW-659/fix: INVITATION_REQUEST_FAILED μ—λŸ¬ λ©”μ„Έμ§€ μ˜€νƒ€ μˆ˜μ •
willjsw Jun 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package com.doubleo.didagent.global.exception.errorcode;

import lombok.AllArgsConstructor;
import lombok.Getter;
import org.springframework.http.HttpStatus;

@Getter
@AllArgsConstructor
public enum AcapyErrorCode implements BaseErrorCode {
INVITATION_NOT_FOUND(HttpStatus.NOT_FOUND, "invitation 을 찾을 수 μ—†μŠ΅λ‹ˆλ‹€."),
MEMBER_CONNECTION_NOT_FOUND(HttpStatus.NOT_FOUND, "member connection 을 찾을 수 μ—†μŠ΅λ‹ˆλ‹€."),
INVITATION_REQUEST_FAILED(HttpStatus.BAD_REQUEST, "invitation 생성 μš”μ²­μ— μ‹€νŒ¨μƒœμŠ΅λ‹ˆλ‹€"),
DID_PROCESS_FAILED(HttpStatus.BAD_REQUEST, "DID 생성 μš”μ²­μ— μ‹€νŒ¨μƒœμŠ΅λ‹ˆλ‹€"),
Copy link

Copilot AI Jun 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It appears there is a typo in the error message; consider replacing "μ‹€νŒ¨μƒœμŠ΅λ‹ˆλ‹€" with "μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€" for clarity.

Suggested change
INVITATION_REQUEST_FAILED(HttpStatus.BAD_REQUEST, "invitation 생성 μš”μ²­μ— μ‹€νŒ¨μƒœμŠ΅λ‹ˆλ‹€"),
DID_PROCESS_FAILED(HttpStatus.BAD_REQUEST, "DID 생성 μš”μ²­μ— μ‹€νŒ¨μƒœμŠ΅λ‹ˆλ‹€"),
INVITATION_REQUEST_FAILED(HttpStatus.BAD_REQUEST, "invitation 생성 μš”μ²­μ— μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"),
DID_PROCESS_FAILED(HttpStatus.BAD_REQUEST, "DID 생성 μš”μ²­μ— μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"),

Copilot uses AI. Check for mistakes.
;

private final HttpStatus httpStatus;
private final String message;

@Override
public String errorClassName() {
return this.name();
}
}