Class AbstractJsonObjectResponse

java.lang.Object
io.quarkus.oidc.runtime.AbstractJsonObjectResponse
Direct Known Subclasses:
TokenIntrospection, UserInfo

public class AbstractJsonObjectResponse extends Object
  • Constructor Details

    • AbstractJsonObjectResponse

      public AbstractJsonObjectResponse()
    • AbstractJsonObjectResponse

      public AbstractJsonObjectResponse(String jsonString)
    • AbstractJsonObjectResponse

      public AbstractJsonObjectResponse(jakarta.json.JsonObject json)
  • Method Details

    • getString

      public String getString(String name)
    • getBoolean

      public Boolean getBoolean(String name)
    • getLong

      public Long getLong(String name)
    • getArray

      public jakarta.json.JsonArray getArray(String name)
    • getObject

      public jakarta.json.JsonObject getObject(String name)
    • getJsonObject

      public jakarta.json.JsonObject getJsonObject()
    • get

      public Object get(String name)
    • contains

      public boolean contains(String propertyName)
    • getPropertyNames

      public Set<String> getPropertyNames()
    • getAllProperties

      public Set<Map.Entry<String,jakarta.json.JsonValue>> getAllProperties()
    • getNonNullJsonString

      protected String getNonNullJsonString()
    • toJsonObject

      static jakarta.json.JsonObject toJsonObject(String json)