Inline parameters in URI

My company is using vaadin to build an application and it is a requirement to allow links to be shared.

Is there any way to have mutiple (inline) parameters when using the vaadin navigator?

exampe being
user/{user_id}/post/{post_id}

?

It is possible with a slight modification, it has to be the part after hash, as explained here: https://vaadin.com/wiki/-/wiki/Main/Using+parameters+with+views
It is one string and parsing to a set of parameters can be done in your code.