mirror of
https://github.com/google/nomulus.git
synced 2025-05-28 16:30:12 +02:00
We want to be safer and more explicit about the authentication needed by the many actions that exist. As such, we make the 'auth' parameter required in @Action (so it's always clear who can run a specific action) and we replace the @Auth with an enum so that only pre-approved configurations that are aptly named and documented can be used. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=162210306
39 lines
989 B
Text
39 lines
989 B
Text
# Description:
|
|
# Routines to publish authoritative DNS.
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "constants",
|
|
srcs = ["DnsConstants.java"],
|
|
)
|
|
|
|
java_library(
|
|
name = "dns",
|
|
srcs = glob(
|
|
["*.java"],
|
|
exclude = ["DnsConstants.java"],
|
|
),
|
|
deps = [
|
|
":constants",
|
|
"//java/google/registry/config",
|
|
"//java/google/registry/dns/writer",
|
|
"//java/google/registry/model",
|
|
"//java/google/registry/monitoring/metrics",
|
|
"//java/google/registry/request",
|
|
"//java/google/registry/request/auth",
|
|
"//java/google/registry/util",
|
|
"//third_party/java/objectify:objectify-v4_1",
|
|
"@com_google_appengine_api_1_0_sdk",
|
|
"@com_google_auto_value",
|
|
"@com_google_code_findbugs_jsr305",
|
|
"@com_google_dagger",
|
|
"@com_google_guava",
|
|
"@javax_servlet_api",
|
|
"@joda_time",
|
|
],
|
|
)
|