-
-
Notifications
You must be signed in to change notification settings - Fork 103
Description
Is it possible to create a WPS client ExecutionResponse (org.deegree.protocol.wps.client.process.execute.ExecutionResponse) from a status location URL as returned by org.deegree.protocol.wps.client.process.ProcessExecution.getStatusLocation()? I can't find a method to do it - but it would be really useful if I could just store the status URL for a long-running process and later on restore the ProcessExecution from it, without the need to keep the original ProcessExecution object alive.
I guess the content for that method would be similar to org.deegree.protocol.wps.client.process.ProcessExecution.getState() but would return a new ProcessExecution. A quick fix would be to derive my own CustomProcessExecution and implement it, but sadly all necessary fields and the constructor are private.
Is there already such a method? And if not, could it be considered as a future feature?