mirror of
https://github.com/google/nomulus.git
synced 2025-05-02 13:07:50 +02:00
This is probably best from a code-cleanliness perspective anyways, but the rationale is that tightly coupling the resources to the info responses was a straightjacket that required all status values and fields to be directly available on the resource. With this change, I already was able to get rid of the preMarshal() hackery, and I will be able to get rid of cloneWithLinkedStatus() and most of the contents of cloneProjectedAtTime() for non-domains. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=144252924
30 lines
764 B
Text
30 lines
764 B
Text
package(
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "model",
|
|
srcs = glob([
|
|
"*.java",
|
|
"*/*.java",
|
|
"*/*/*.java",
|
|
]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//java/google/registry/config",
|
|
"//java/google/registry/util",
|
|
"//java/google/registry/xml",
|
|
"//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",
|
|
"@com_google_re2j",
|
|
"@javax_servlet_api",
|
|
"@joda_time",
|
|
"@org_joda_money",
|
|
],
|
|
)
|