mirror of
https://github.com/google/nomulus.git
synced 2025-06-26 06:14:54 +02:00
The ICANN RDAP Profile (dated 3 December 2015) requires certain boilerplate entries at the top level of the JSON object. Specifically: 1.4.4. The terms of service of the RDAP service MUST be specified in the notices object in the topmost JSON object of the response. The notices object MUST contain a links object [RFC7483]. The links object MUST contain an URL of the contracted party providing the RDAP service. 1.4.10. An RDAP response MUST contain a remarks member with a description containing the string “This response conforms to the RDAP Operational Profile for gTLD Registries and Registrars version 1.0”. 1.5.18. A domain name RDAP response MUST contain a remarks member with a title “EPP Status Codes”, a description containing the string “For more information on domain status codes, please visit https://icann.org/epp” and a links member with the https://icann.org/epp URL. 1.5.20. A domain name RDAP response MUST contain a remarks member with a title “Whois Inaccuracy Complaint Form”, a description containing the string “URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf” and a links member with the https://www.icann.org/wicf URL. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=116389950
55 lines
1.9 KiB
Java
55 lines
1.9 KiB
Java
// Copyright 2016 Google Inc. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package com.google.domain.registry.rdap;
|
|
|
|
import static com.google.domain.registry.request.Action.Method.GET;
|
|
import static com.google.domain.registry.request.Action.Method.HEAD;
|
|
|
|
import com.google.common.collect.ImmutableMap;
|
|
import com.google.domain.registry.request.Action;
|
|
import com.google.domain.registry.request.HttpException;
|
|
import com.google.domain.registry.request.HttpException.NotImplementedException;
|
|
|
|
import javax.inject.Inject;
|
|
|
|
/**
|
|
* RDAP (new WHOIS) action for RDAP autonomous system number reuqests.
|
|
*
|
|
* <p>This feature is not implemented because it's only necessary for <i>address</i> registries like
|
|
* ARIN, not domain registries.
|
|
*/
|
|
@Action(path = RdapAutnumAction.PATH, method = {GET, HEAD}, isPrefix = true)
|
|
public class RdapAutnumAction extends RdapActionBase {
|
|
|
|
public static final String PATH = "/rdap/autnum";
|
|
|
|
@Inject RdapAutnumAction() {}
|
|
|
|
@Override
|
|
public String getHumanReadableObjectTypeName() {
|
|
return "autnum";
|
|
}
|
|
|
|
@Override
|
|
public String getActionPath() {
|
|
return PATH;
|
|
}
|
|
|
|
@Override
|
|
public ImmutableMap<String, Object> getJsonObjectForResource(
|
|
String pathSearchString, boolean isHeadRequest, String linkBase) throws HttpException {
|
|
throw new NotImplementedException("Domain Name Registry information only");
|
|
}
|
|
}
|