What is the purpose of `wire ()` and `isWired ()` in Seam?
2 answers
isWired()
returns a value indicating whether the object has all the required references to other objects populated (i.e., all required (non-null) foreign keys are valid). wire()
tries to populate these fields with values ββfrom the corresponding objects Home
.
(I hope someone can post a better description.)
+2
source to share