File tree Expand file tree Collapse file tree
src/main/java/com/apicatalog/controller/method Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 <artifactId >
99 carbon-did</artifactId >
1010
11- <version >0.9 .0-SNAPSHOT</version >
11+ <version >0.10 .0-SNAPSHOT</version >
1212 <packaging >jar</packaging >
1313
1414 <url >
7373 <!-- test resources -->
7474 <junit .version>5.11.3</junit .version>
7575 <titanium .version>1.4.1</titanium .version>
76+
7677 </properties >
7778 <dependencies >
7879 <dependency >
110111 <version >${jakarta.json.version} </version >
111112 <scope >test</scope >
112113 </dependency >
114+
115+ <!-- REMOVE-->
116+ <dependency >
117+ <groupId >com.apicatalog</groupId >
118+ <artifactId >titanium-json-ld</artifactId >
119+ <version >${titanium.version} </version >
120+ </dependency >
121+
113122 </dependencies >
114123
115124 <build >
Original file line number Diff line number Diff line change 33import java .net .URI ;
44import java .time .Instant ;
55
6- public record GenericMethodUri (
7- URI id
8- ) implements VerificationMethod {
6+ public class GenericMethodUri implements VerificationMethod {
97
8+ protected final URI id ;
9+
10+ public GenericMethodUri (URI id ) {
11+ this .id = id ;
12+ }
13+
14+ @ Override
15+ public URI id () {
16+ return id ;
17+ }
18+
1019 @ Override
1120 public String type () {
1221 return null ;
You can’t perform that action at this time.
0 commit comments