|
@Getter(AccessLevel.PACKAGE) |
|
private final boolean isAuthenticated; |
I would like to be able to access this to test that the resolver is setting the Authentication bit / the result is authenticated.
Is there a reason for the access level to be package? The information is publicly available through toString() already.
Thank you!
dnsjava/src/main/java/org/xbill/DNS/lookup/LookupResult.java
Lines 53 to 54 in 4b84d92
I would like to be able to access this to test that the resolver is setting the Authentication bit / the result is authenticated.
Is there a reason for the access level to be package? The information is publicly available through toString() already.
Thank you!