Add isReadable method to UnwrappedMongoPersistentProperty.

Closes: #4489
This commit is contained in:
Christoph Strobl
2023-08-31 09:43:58 +02:00
parent e3e73f5351
commit 492f09fbdf

View File

@@ -255,6 +255,11 @@ class UnwrappedMongoPersistentProperty implements MongoPersistentProperty {
return delegate.isWritable();
}
@Override
public boolean isReadable() {
return delegate.isReadable();
}
@Override
public boolean isImmutable() {
return delegate.isImmutable();