Skip to content

Commit 2bc36ab

Browse files
committed
document reference updates
1 parent 0858140 commit 2bc36ab

35 files changed

+36
-36
lines changed

src/main/java/net/apnic/rdap/conformance/attributetest/AsEventActor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public boolean run(final Context context, final Result proto,
2626
final Map<String, Object> argData) {
2727
Result nr = new Result(proto);
2828
nr.setCode("content");
29-
nr.setDocument("draft-ietf-weirds-json-response-14");
29+
nr.setDocument("rfc7483");
3030
nr.setReference("5.1");
3131

3232
AttributeTest arrayTest =

src/main/java/net/apnic/rdap/conformance/attributetest/Country.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public boolean run(final Context context, final Result proto,
3838
Result nr = new Result(proto);
3939
nr.setCode("content");
4040
nr.addNode("country");
41-
nr.setDocument("draft-ietf-weirds-json-response-14");
41+
nr.setDocument("rfc7483");
4242
nr.setReference("3");
4343

4444
String countryValue =

src/main/java/net/apnic/rdap/conformance/attributetest/DomainNames.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public boolean run(final Context context, final Result proto,
7272
* section 3 is likely to be the most helpful part of the
7373
* document in the event of failure anyway. */
7474
nr.setCode("content");
75-
nr.setDocument("draft-ietf-weirds-json-response-14");
75+
nr.setDocument("rfc7483");
7676
nr.setReference("3");
7777

7878
boolean res = true;

src/main/java/net/apnic/rdap/conformance/attributetest/Entities.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public boolean run(final Context context, final Result proto,
3232
/* Only set the reference if it is not already set, since the
3333
* entities attribute is described separately for each object. */
3434
if (nr.getDocument() == null) {
35-
nr.setDocument("draft-ietf-weirds-json-response-14");
35+
nr.setDocument("rfc7483");
3636
nr.setReference("5.1");
3737
}
3838

src/main/java/net/apnic/rdap/conformance/attributetest/Entity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public boolean run(final Context context, final Result proto,
7373

7474
Result nr = new Result(proto);
7575
nr.setCode("content");
76-
nr.setDocument("draft-ietf-weirds-json-response-14");
76+
nr.setDocument("rfc7483");
7777
nr.setReference("5.1");
7878

7979
String responseHandle =

src/main/java/net/apnic/rdap/conformance/attributetest/Event.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public boolean run(final Context context, final Result proto,
4747

4848
Result nr = new Result(proto);
4949
nr.setCode("content");
50-
nr.setDocument("draft-ietf-weirds-json-response-14");
50+
nr.setDocument("rfc7483");
5151
nr.setReference("4.5");
5252

5353
boolean eacres = true;

src/main/java/net/apnic/rdap/conformance/attributetest/Events.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public boolean run(final Context context, final Result proto,
2828

2929
Result nr = new Result(proto);
3030
nr.setCode("content");
31-
nr.setDocument("draft-ietf-weirds-json-response-14");
31+
nr.setDocument("rfc7483");
3232
nr.setReference("4.5");
3333

3434
return arrayTest.run(context, nr, data);

src/main/java/net/apnic/rdap/conformance/attributetest/Lang.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public boolean run(final Context context, final Result proto,
3232
Result nr = new Result(proto);
3333
nr.setCode("content");
3434
nr.addNode("lang");
35-
nr.setDocument("draft-ietf-weirds-json-response-14");
35+
nr.setDocument("rfc7483");
3636
nr.setReference("4.4");
3737

3838
String lang = Utils.getStringAttribute(context,

src/main/java/net/apnic/rdap/conformance/attributetest/Link.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public boolean run(final Context context, final Result proto,
3737

3838
Result nr = new Result(proto);
3939
nr.setCode("content");
40-
nr.setDocument("draft-ietf-weirds-json-response-14");
40+
nr.setDocument("rfc7483");
4141
nr.setReference("4.2");
4242

4343
boolean success = true;

src/main/java/net/apnic/rdap/conformance/attributetest/Links.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public boolean run(final Context context, final Result proto,
2828

2929
Result nr = new Result(proto);
3030
nr.setCode("content");
31-
nr.setDocument("draft-ietf-weirds-json-response-14");
31+
nr.setDocument("rfc7483");
3232
nr.setReference("4.2");
3333

3434
return arrayTest.run(context, nr, data);

0 commit comments

Comments
 (0)