I have a very simple DMI method that returns java.io.File[] of a directory. Is there a way to configure the DMI to pass values that it seems to skip by default, such as file.length(), file.lastModified(). I assume these values do not get passed because Java does not follow the standard get/set property for these values. Am I thus required to wrap a java.io.File with a class that provides the malformed property getters and setters, or is there a way to tell your framework how to retrieve properties that it does not successfully find?
↧