Why when trying to get the projects i am getting the following exception:
Error logs:
com.fasterxml.jackson.databind.JsonMappingException: Can not deserialize instance of java.lang.String out of START_OBJECT token
org.openstack4j.openstack.identity.v3.domain.KeystoneProject$Projects["projects"]->java.util.ArrayList[0]->org.openstack4j.openstack.identity.v3.domain.KeystoneProject["options"])
Tempurary solution could be:
Add "options" to Json Annotation in class org.openstack4j.openstack.identity.v3.domain.KeystoneProject
@JsonIgnoreProperties(value = "options" , ignoreUnknown = true)
@JsonIgnoreProperties(value = {"extra", "options"} , ignoreUnknown = true)
Why when trying to get the projects i am getting the following exception:
Error logs:
Tempurary solution could be:
Add "options" to Json Annotation in class org.openstack4j.openstack.identity.v3.domain.KeystoneProject