Uploaded image for project: 'Commons Sandbox'
  1. Commons Sandbox
  2. SANDBOX-387

[BeanUtils2] Implement possibility to find out if a property readable and/or wirtable

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • Nightly Builds
    • None
    • BeanUtils2
    • None

    Description

      Currently there is no possibility to find out, if a property is readable and/or writable.
      For example, one has to pass a value to setProperty(name).withValue(argument) and hope, that the property is writeable (because a NoSucheMethodExcpetion will be thrown, if it is not). For this reason it would be nice, if one could do something like:

      if (on(myBean).isWritable("writeableProperty") {
          on(myBean).setProperty("writableProperty").withValue("This is a String value!");
      }
      

      Solution:

      • Add public boolean isWritable(String propertyName) and public boolean isReadable(String propertyName) to BeanAccessor.
      • in isWritable() check if a PropertyDescriptor can be obtained from PropertyRegistry (if not, throw NoSuchMethodException).
        • if so, return true, if propertyDescriptor.getWriteMethod() != null and false otherwise.
      • in isReadable() check if a PropertyDescriptor can be obtained from PropertyRegistry (if not, throw NoSuchMethodException).
        • if so, return true, if propertyDescriptor.getReadMethod() != null and false otherwise.

      Attachments

        1. SANDBOX-387.txt
          11 kB
          Benedikt Ritter

        Activity

          People

            simone.tripodi Simone Tripodi
            britter Benedikt Ritter
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: