phax / phase4

phase4 - AS4 client and server for integration into existing systems. Specific support for Peppol and CEF eDelivery built-in.
Apache License 2.0
154 stars 47 forks source link

Initialize `ETriState` member variables as `UNDEFINED` #116

Closed vbrandl closed 1 year ago

vbrandl commented 1 year ago

Initializing ETriState member variables by default to undefined makes the objects behave consistently.

Before new PModeLegSecurity().isPModeAuthorizeDefined() == false while new PModeLegErrorHandling().isReportAsResponseDefined() would throw a NullPointerException.

With this change, every ETriState should be properly initialized (I used grep -r -F 'ETriState m_' src to find all occurrences).