sigurd-cp opened a new issue, #926:
URL: https://github.com/apache/pekko-http/issues/926
Hey guys,
I' working with the Java API von Pekko Http (1.4)
import org.apache.pekko.http.javadsl.model.FormData;
With `Unmarshaller.entityToWwwUrlEncodedFormData()` I get the FormData but I
no option to access the fields.
My workaround right now is based on reflection:
final Field field = formatData.getClass().getDeclaredField("fields");
field.setAccessible(true);
final Query query = (Query) field.get(formatData);
Getter would be really nice :)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]