Interface HttpBodyMap

  • All Superinterfaces:
    org.refcodes.structure.CanonicalMap, org.refcodes.structure.CanonicalMap.CanonicalMapBuilder, org.refcodes.structure.CanonicalMap.MutableCanonicalMap, org.refcodes.structure.Clearable, org.refcodes.structure.Containable, org.refcodes.mixin.DelimiterAccessor, org.refcodes.structure.Dictionary<java.lang.String,T>, org.refcodes.structure.Dictionary.MutableDictionary<java.lang.String,T>, org.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<java.lang.String,T,org.refcodes.structure.PathMap.PathMapBuilder<T>>, org.refcodes.mixin.Dumpable, org.refcodes.structure.Keys<java.lang.String,T>, org.refcodes.structure.Keys.MutableKeys<java.lang.String,T>, org.refcodes.structure.Keys.MutableValues<java.lang.String,T>, java.util.Map<java.lang.String,T>, org.refcodes.structure.PathMap<java.lang.String>, org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>, org.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>, org.refcodes.structure.PropertiesAccessorMixin, org.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>, org.refcodes.structure.PropertiesAccessorMixin.PropertiesMixin, org.refcodes.structure.PropertiesAccessorMixin.PropertiesMutatorMixin, org.refcodes.mixin.TypeAccessor<java.lang.String>
    All Known Implementing Classes:
    HttpBodyMapImpl


    public interface HttpBodyMap
    extends org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
    The HttpBodyMap type is a "dynamic" type in terms of it's structure being represented by paths'. When a data structure is parsed e.g. from JSON or XML, then the data structure's internal structure and values are reflected by according paths's and values in the HttpBodyMap. The HttpBodyMap is actually a specialization of the PathMap using String objects as values and a slash ("/") as path delimiter. Using the HttpBodyMap it is convenient to navigate or address elements from unknown or dynamic data structures. The other way round the HttpBodyMap may be used to construct dynamic data types by adding the according paths's and values for marshaling into e.g. JSON or XML. Think of an HttpBodyMap as a flattened JSON or XML structure. The HttpClientResponseImpl, HttpServerRequestImpl, HttpServerResponseImpl as well as the HttpClientResponseImpl implementations directly support the HttpBodyMap, given that the MediaTypeFactory being used supports marshaling and unmarshaling from and to nested Map instances. The HttpBodyMap acts as a view of the nested Map structures, which are somehow inconvenient to navigate through. The HttpClientRequest.setRequest(Object) implementation supports the HttpBodyMap to marshal an HttpBodyMap into an HTTP Request-Body. The HttpClientResponse.getResponse(Class) implementation supports the HttpBodyMap to unmarshal an HTTP Response-Body into an HttpBodyMap. The HttpServerRequest.getRequest(Class) implementation supports the HttpBodyMap to unmarshal an HTTP Request-Body into an HttpBodyMap. The HttpServerResponse.setResponse(Object) implementation supports the HttpBodyMap to marshal an HttpBodyMap into an HTTP Request-Body.
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.refcodes.structure.CanonicalMap

        org.refcodes.structure.CanonicalMap.CanonicalMapBuilder, org.refcodes.structure.CanonicalMap.MutableCanonicalMap
      • Nested classes/interfaces inherited from interface org.refcodes.mixin.DelimiterAccessor

        org.refcodes.mixin.DelimiterAccessor.DelimiterBuilder<B extends org.refcodes.mixin.DelimiterAccessor.DelimiterBuilder<B>>, org.refcodes.mixin.DelimiterAccessor.DelimiterMutator, org.refcodes.mixin.DelimiterAccessor.DelimiterProperty
      • Nested classes/interfaces inherited from interface org.refcodes.structure.Dictionary

        org.refcodes.structure.Dictionary.MutableDictionary<K extends java.lang.Object,V extends java.lang.Object>
      • Nested classes/interfaces inherited from interface org.refcodes.structure.Dictionary.MutableDictionary

        org.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<K extends java.lang.Object,V extends java.lang.Object,B extends org.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<K,V,B>>
      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,V extends java.lang.Object>
      • Nested classes/interfaces inherited from interface org.refcodes.structure.PathMap

        org.refcodes.structure.PathMap.MutablePathMap<T extends java.lang.Object>, org.refcodes.structure.PathMap.PathMapBuilder<T extends java.lang.Object>
      • Nested classes/interfaces inherited from interface org.refcodes.structure.PropertiesAccessorMixin

        org.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<T extends java.lang.Object>, org.refcodes.structure.PropertiesAccessorMixin.PropertiesMixin, org.refcodes.structure.PropertiesAccessorMixin.PropertiesMutatorMixin
      • Nested classes/interfaces inherited from interface org.refcodes.mixin.TypeAccessor

        org.refcodes.mixin.TypeAccessor.TypeMutator<T extends java.lang.Object>, org.refcodes.mixin.TypeAccessor.TypeProperty<T extends java.lang.Object>
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default java.lang.String delete​(java.lang.String aKey)
      default HttpBodyMap getDirAt​(int aIndex)
      default HttpBodyMap getDirAt​(java.lang.String aPath, int aIndex)
      default java.lang.String getStatusAlias​()
      Retrieves the default path's ("status/alias") status alias.
      default HttpStatusCode getStatusCode​()
      Retrieves the default path's ("status/code") status code.
      default java.lang.Class<?> getStatusException​()
      Retrieves the default path's ("status/exception") status exception.
      default java.lang.String getStatusMessage​()
      Retrieves the default path's ("status/message") status message.
      default java.lang.Long getStatusTimeStamp​()
      Retrieves the default path's ("status/Time-Stamp") status Time-Stamp.
      default boolean hasStatusAlias​()
      Determines whether a default path's ("status/alias") status alias exists.
      default boolean hasStatusCode​()
      Determines whether a default path's ("status/code") status code exists.
      default boolean hasStatusException​()
      Determines whether a default path's ("status/exception") status exception exists.
      default boolean hasStatusMessage​()
      Determines whether a default path's ("status/message") status message exists.
      default boolean hasStatusTimeStamp​()
      Determines whether a default path's ("status/Time-Stamp") status Time-Stamp in milliseconds exists.
      default java.lang.String putStatusAlias​(java.lang.String aStatusAlias)
      Puts a default path's ("status/alias") status alias.
      default java.lang.String putStatusAlias​(HttpStatusCode aStatusCode)
      Puts a default path's ("status/alias") status alias.
      default java.lang.String putStatusCode​(int aStatusCode)
      Puts a default path's ("status/code") status code.
      default java.lang.String putStatusCode​(HttpStatusCode aStatusCode)
      Puts a default path's ("status/code") status code.
      default java.lang.String putStatusException​(java.lang.Class<java.lang.Exception> aStatusException)
      Puts a default path's ("status/exception") status exception.
      default java.lang.String putStatusException​(java.lang.Exception aStatusException)
      Puts a default path's ("status/exception") status exception.
      default java.lang.String putStatusMessage​(java.lang.String aStatusMessage)
      Puts a default path's ("status/message") status message.
      default java.lang.String putStatusTimeStamp​()
      Puts a default path's ("status/Time-Stamp") status Time-Stamp to the current time in milliseconds as of System.currentTimeMillis()
      default java.lang.String putStatusTimeStamp​(long aStatusTimeStamp)
      Puts a default path's ("status/Time-Stamp") status Time-Stamp in milliseconds.
      default HttpBodyMap query​(java.lang.String aPathQuery)
      default HttpBodyMap query​(java.lang.String aPathQuery, java.lang.String aFromPath, java.lang.String aToPath)
      default HttpBodyMap queryFrom​(java.lang.String aPathQuery, java.lang.String aFromPath)
      default HttpBodyMap queryTo​(java.lang.String aPathQuery, java.lang.String aToPath)
      default org.refcodes.structure.CanonicalMap removeAll​(java.lang.String aPathQuery)
      default org.refcodes.structure.CanonicalMap removeAll​(java.util.Set<java.lang.String> aPaths)
      default org.refcodes.structure.CanonicalMap removeDirAt​(int aIndex)
      default org.refcodes.structure.CanonicalMap removeDirAt​(java.lang.Object[] aPathElements, int aIndex)
      default org.refcodes.structure.CanonicalMap removeDirAt​(java.lang.Object aPath, int aIndex)
      default org.refcodes.structure.CanonicalMap removeDirAt​(java.lang.String[] aPathElements, int aIndex)
      default org.refcodes.structure.CanonicalMap removeDirAt​(java.lang.String aPath, int aIndex)
      default org.refcodes.structure.CanonicalMap removeFrom​(java.lang.Object aPath)
      default org.refcodes.structure.CanonicalMap removeFrom​(java.lang.Object... aPathElements)
      default org.refcodes.structure.CanonicalMap removeFrom​(java.lang.String aPath)
      default HttpBodyMap removeFrom​(java.lang.String... aPathElements)
      HttpBodyMap retrieve​(java.lang.String aFromPath, java.lang.String aToPath)
      default HttpBodyMap retrieveFrom​(java.lang.Object aParentPath)
      default HttpBodyMap retrieveFrom​(java.lang.Object... aPathElements)
      HttpBodyMap retrieveFrom​(java.lang.String aFromPath)
      default HttpBodyMap retrieveFrom​(java.lang.String... aPathElements)
      default HttpBodyMap retrieveTo​(java.lang.Object aToPath)
      default HttpBodyMap retrieveTo​(java.lang.Object... aToPathElements)
      HttpBodyMap retrieveTo​(java.lang.String aToPath)
      default HttpBodyMap retrieveTo​(java.lang.String... aToPathElements)
      default HttpBodyMap withInsert​(java.lang.Object aObj)
      default HttpBodyMap withInsert​(java.lang.String aToPath, java.lang.Object aFrom, java.lang.String aFromPath)
      default HttpBodyMap withInsertFrom​(java.lang.Object aFrom, java.lang.String aFromPath)
      default HttpBodyMap withInsertTo​(java.lang.String aToPath, java.lang.Object aFrom)
      default HttpBodyMap withPut​(java.lang.Object[] aPathElements, java.lang.String aValue)
      default HttpBodyMap withPut​(java.lang.Object aPath, java.lang.String aValue)
      default HttpBodyMap withPut​(java.lang.String[] aPathElements, java.lang.String aValue)
      default HttpBodyMap withPut​(java.lang.String aKey, java.lang.String aValue)
      default HttpBodyMap withPut​(org.refcodes.structure.Relation<java.lang.String,java.lang.String> aRelation)
      default HttpBodyMap withPutBoolean​(java.lang.Object[] aPathElements, java.lang.Boolean aValue)
      default HttpBodyMap withPutBoolean​(java.lang.String[] aPathElements, java.lang.Boolean aValue)
      default HttpBodyMap withPutByte​(java.lang.Object[] aPathElements, java.lang.Byte aValue)
      default HttpBodyMap withPutByte​(java.lang.String[] aPathElements, java.lang.Byte aValue)
      default HttpBodyMap withPutDouble​(java.lang.Object[] aPathElements, java.lang.Double aValue)
      default HttpBodyMap withPutDouble​(java.lang.String[] aPathElements, java.lang.Double aValue)
      default HttpBodyMap withPutFloat​(java.lang.Object[] aPathElements, java.lang.Float aValue)
      default HttpBodyMap withPutFloat​(java.lang.String[] aPathElements, java.lang.Float aValue)
      default HttpBodyMap withPutInteger​(java.lang.Object[] aPathElements, java.lang.Integer aValue)
      default HttpBodyMap withPutInteger​(java.lang.String[] aPathElements, java.lang.Integer aValue)
      default HttpBodyMap withPutLong​(java.lang.Object[] aPathElements, java.lang.Long aValue)
      default HttpBodyMap withPutLong​(java.lang.String[] aPathElements, java.lang.Long aValue)
      default HttpBodyMap withPutShort​(java.lang.Object[] aPathElements, java.lang.Short aValue)
      default HttpBodyMap withPutShort​(java.lang.String[] aPathElements, java.lang.Short aValue)
      default HttpBodyMap withPutStatusAlias​(java.lang.String aStatusAlias)
      Puts a default path's ("status/alias") status alias.
      default HttpBodyMap withPutStatusAlias​(HttpStatusCode aStatusCode)
      Puts a default path's ("status/alias") status alias.
      default HttpBodyMap withPutStatusCode​(int aStatusCode)
      Puts a default path's ("status/code") status code.
      default HttpBodyMap withPutStatusCode​(HttpStatusCode aStatusCode)
      Puts a default path's ("status/code") status code.
      • Methods inherited from interface org.refcodes.structure.CanonicalMap

        getBoolean, getBoolean, getByte, getByte, getCharacter, getCharacter, getDouble, getDouble, getFloat, getFloat, getInteger, getInteger, getLong, getLong, getShort, getShort, toInstance, toInstance, toType, toType
      • Methods inherited from interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder

        withInsert, withInsert, withInsertFrom, withInsertTo, withPutBoolean, withPutByte, withPutDouble, withPutFloat, withPutInteger, withPutLong, withPutShort, withRemoveFrom
      • Methods inherited from interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap

        containsValue, insert, insert, insertFrom, insertTo, put, put, put, putAll, putAll, putAll, putBoolean, putBoolean, putByte, putByte, putDouble, putDouble, putFloat, putFloat, putInteger, putInteger, putLong, putLong, putShort, putShort, toDump, toSourceCode, toSourceCode
      • Methods inherited from interface org.refcodes.structure.Containable

        isEmpty, size
      • Methods inherited from interface org.refcodes.mixin.DelimiterAccessor

        getDelimiter
      • Methods inherited from interface org.refcodes.mixin.Dumpable

        toDump
      • Methods inherited from interface java.util.Map

        clear, compute, computeIfAbsent, computeIfPresent, containsKey, entry, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, of, of, of, of, of, of, of, of, of, of, of, ofEntries, put, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
      • Methods inherited from interface org.refcodes.structure.PathMap

        children, children, children, children, children, containsKey, containsKey, dirs, dirs, dirs, dirs, dirs, fromExternalPath, get, get, getArray, getArray, getArray, getArray, getArrayIndexes, getArrayIndexes, getArrayIndexes, getArrayIndexes, getDirAt, getDirAt, getDirAt, getDirIndexes, getDirIndexes, getDirIndexes, getDirIndexes, getRootPath, getValueAt, getValueAt, getValueAt, getValueAt, getValueAt, hasChildren, hasChildren, hasChildren, hasChildren, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasParentPath, hasPath, hasPath, hasPath, hasValueAt, hasValueAt, hasValueAt, hasValueAt, isArray, isArray, isArray, isArray, isArray, isArrayIndex, isArrayIndex, isArrayIndex, isArrayIndex, isArrayIndex, isChild, isChild, isChild, isDir, isDir, isDir, isDir, isDirIndex, isDirIndex, isDirIndex, isDirIndex, isLeaf, isLeaf, isLeaf, isLeaf, isRootPath, keySet, lastArrayIndex, lastArrayIndex, lastArrayIndex, lastArrayIndex, lastArrayIndex, lastDirIndex, lastDirIndex, lastDirIndex, lastDirIndex, lastDirIndex, leaves, leaves, leaves, leaves, leaves, nextArrayIndex, nextArrayIndex, nextArrayIndex, nextArrayIndex, nextArrayIndex, nextDirIndex, nextDirIndex, nextDirIndex, nextDirIndex, nextDirIndex, paths, paths, paths, paths, paths, queryPaths, toDataStructure, toDataStructure, toExternalPath, toLeaf, toMap, toMap, toNormalizedPath, toParentPath, toPath, toPath, toPath, toPathElements
      • Methods inherited from interface org.refcodes.structure.PathMap.MutablePathMap

        appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendValueTo, appendValueTo, appendValueTo, appendValueTo, insert, insert, insert, insert, insertFrom, insertFrom, insertTo, insertTo, put, putArray, putArray, putArray, putArray, putArray, putDirAt, putDirAt, putDirAt, putDirAt, putDirAt, putValueAt, putValueAt, putValueAt, putValueAt, putValueAt, remove, remove, removeValueAt, removeValueAt, removeValueAt, removeValueAt, removeValueAt
      • Methods inherited from interface org.refcodes.structure.PathMap.PathMapBuilder

        withInsert, withInsert, withInsertFrom, withInsertTo
      • Methods inherited from interface org.refcodes.structure.PropertiesAccessorMixin

        asArray, asArray, asArray, asArray, asArray, asArray, asBooleanArray, asBooleanArray, asBooleanArray, asBooleanArray, asBooleanArray, asBooleanArray, asByteArray, asByteArray, asByteArray, asByteArray, asByteArray, asByteArray, asCharacterArray, asCharacterArray, asCharacterArray, asCharacterArray, asCharacterArray, asCharacterArray, asDoubleArray, asDoubleArray, asDoubleArray, asDoubleArray, asDoubleArray, asDoubleArray, asFloatArray, asFloatArray, asFloatArray, asFloatArray, asFloatArray, asFloatArray, asIntegerArray, asIntegerArray, asIntegerArray, asIntegerArray, asIntegerArray, asIntegerArray, asLongArray, asLongArray, asLongArray, asLongArray, asLongArray, asLongArray, asShortArray, asShortArray, asShortArray, asShortArray, asShortArray, asShortArray, containsKey, get, getBoolean, getBoolean, getBoolean, getByte, getByte, getByte, getCharacter, getCharacter, getCharacter, getDouble, getDouble, getDouble, getFloat, getFloat, getFloat, getInteger, getInteger, getInteger, getLong, getLong, getLong, getShort, getShort, getShort, use, useBoolean, useBoolean, useByte, useByte, useDouble, useDouble, useFloat, useFloat, useInteger, useInteger, useLong, useLong, useShort, useShort
      • Methods inherited from interface org.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin

        withPut
      • Methods inherited from interface org.refcodes.structure.PropertiesAccessorMixin.PropertiesMutatorMixin

        put, put, putBoolean, putBoolean, putByte, putByte, putDouble, putDouble, putFloat, putFloat, putInteger, putInteger, putLong, putLong, putShort, putShort
      • Methods inherited from interface org.refcodes.mixin.TypeAccessor

        getType
    • Method Detail

      • hasStatusCode

        default boolean hasStatusCode​()
        Determines whether a default path's ("status/code") status code exists.
        Returns:
        True in case there is a valid value for the status code default path.
      • putStatusCode

        default java.lang.String putStatusCode​(int aStatusCode)
        Puts a default path's ("status/code") status code.
        Parameters:
        aStatusCode - The status code value to be set.
        Returns:
        The previously set value for the status code default path.
      • withPutStatusCode

        default HttpBodyMap withPutStatusCode​(int aStatusCode)
        Puts a default path's ("status/code") status code.
        Parameters:
        aStatusCode - The status code value to be set.
        Returns:
        The previously set value for the status code default path.
      • putStatusCode

        default java.lang.String putStatusCode​(HttpStatusCode aStatusCode)
        Puts a default path's ("status/code") status code.
        Parameters:
        aStatusCode - The HttpStatusCode to be set.
        Returns:
        The previously set value for the status code default path.
      • withPutStatusCode

        default HttpBodyMap withPutStatusCode​(HttpStatusCode aStatusCode)
        Puts a default path's ("status/code") status code.
        Parameters:
        aStatusCode - The HttpStatusCode to be set.
        Returns:
        The previously set value for the status code default path.
      • getStatusCode

        default HttpStatusCode getStatusCode​()
        Retrieves the default path's ("status/code") status code.
        Returns:
        The previously set value for the status code default path.
      • hasStatusAlias

        default boolean hasStatusAlias​()
        Determines whether a default path's ("status/alias") status alias exists.
        Returns:
        True in case there is a valid value for the status alias default path.
      • putStatusAlias

        default java.lang.String putStatusAlias​(java.lang.String aStatusAlias)
        Puts a default path's ("status/alias") status alias.
        Parameters:
        aStatusAlias - The status alias value to be set.
        Returns:
        The previously set value for the status alias default path.
      • withPutStatusAlias

        default HttpBodyMap withPutStatusAlias​(java.lang.String aStatusAlias)
        Puts a default path's ("status/alias") status alias.
        Parameters:
        aStatusAlias - The status alias value to be set.
        Returns:
        The previously set value for the status alias default path.
      • putStatusAlias

        default java.lang.String putStatusAlias​(HttpStatusCode aStatusCode)
        Puts a default path's ("status/alias") status alias.
        Parameters:
        aStatusCode - The HttpStatusCode, which's verbose alias is to be set.
        Returns:
        The previously set value for the status alias default path.
      • withPutStatusAlias

        default HttpBodyMap withPutStatusAlias​(HttpStatusCode aStatusCode)
        Puts a default path's ("status/alias") status alias.
        Parameters:
        aStatusCode - The HttpStatusCode, which's verbose alias is to be set.
        Returns:
        The previously set value for the status alias default path.
      • getStatusAlias

        default java.lang.String getStatusAlias​()
        Retrieves the default path's ("status/alias") status alias.
        Returns:
        The previously set value for the status alias default path.
      • hasStatusMessage

        default boolean hasStatusMessage​()
        Determines whether a default path's ("status/message") status message exists.
        Returns:
        True in case there is a valid value for the status message default path.
      • putStatusMessage

        default java.lang.String putStatusMessage​(java.lang.String aStatusMessage)
        Puts a default path's ("status/message") status message.
        Parameters:
        aStatusMessage - The status message value to be set.
        Returns:
        The previously set value for the status message default path.
      • getStatusMessage

        default java.lang.String getStatusMessage​()
        Retrieves the default path's ("status/message") status message.
        Returns:
        The previously set value for the status message default path.
      • hasStatusTimeStamp

        default boolean hasStatusTimeStamp​()
        Determines whether a default path's ("status/Time-Stamp") status Time-Stamp in milliseconds exists.
        Returns:
        True in case there is a valid value for the status Time-Stamp default path.
      • putStatusTimeStamp

        default java.lang.String putStatusTimeStamp​(long aStatusTimeStamp)
        Puts a default path's ("status/Time-Stamp") status Time-Stamp in milliseconds.
        Parameters:
        aStatusTimeStamp - The status Time-Stamp value to be set.
        Returns:
        The previously set value for the status Time-Stamp default path.
      • putStatusTimeStamp

        default java.lang.String putStatusTimeStamp​()
        Puts a default path's ("status/Time-Stamp") status Time-Stamp to the current time in milliseconds as of System.currentTimeMillis()
        Returns:
        The previously set value for the status Time-Stamp default path.
      • getStatusTimeStamp

        default java.lang.Long getStatusTimeStamp​()
        Retrieves the default path's ("status/Time-Stamp") status Time-Stamp.
        Returns:
        The previously set value for the status Time-Stamp default path.
      • hasStatusException

        default boolean hasStatusException​()
        Determines whether a default path's ("status/exception") status exception exists.
        Returns:
        True in case there is a valid value for the status exception default path.
      • putStatusException

        default java.lang.String putStatusException​(java.lang.Class<java.lang.Exception> aStatusException)
        Puts a default path's ("status/exception") status exception.
        Parameters:
        aStatusException - The status exception value to be set.
        Returns:
        The previously set value for the status exception default path.
      • putStatusException

        default java.lang.String putStatusException​(java.lang.Exception aStatusException)
        Puts a default path's ("status/exception") status exception.
        Parameters:
        aStatusException - The status exception value to be set.
        Returns:
        The previously set value for the status exception default path.
      • getStatusException

        default java.lang.Class<?> getStatusException​()
        Retrieves the default path's ("status/exception") status exception.
        Returns:
        The previously set value for the status exception default path.
      • removeAll

        default org.refcodes.structure.CanonicalMap removeAll​(java.util.Set<java.lang.String> aPaths)
        Specified by:
        removeAll in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeAll in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeAll

        default org.refcodes.structure.CanonicalMap removeAll​(java.lang.String aPathQuery)
        Specified by:
        removeAll in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeAll in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeDirAt

        default org.refcodes.structure.CanonicalMap removeDirAt​(int aIndex)
        Specified by:
        removeDirAt in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeDirAt in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeDirAt

        default org.refcodes.structure.CanonicalMap removeDirAt​(java.lang.Object aPath,
                                                                int aIndex)
        Specified by:
        removeDirAt in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeDirAt in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeDirAt

        default org.refcodes.structure.CanonicalMap removeDirAt​(java.lang.Object[] aPathElements,
                                                                int aIndex)
        Specified by:
        removeDirAt in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeDirAt in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeDirAt

        default org.refcodes.structure.CanonicalMap removeDirAt​(java.lang.String aPath,
                                                                int aIndex)
        Specified by:
        removeDirAt in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeDirAt in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeDirAt

        default org.refcodes.structure.CanonicalMap removeDirAt​(java.lang.String[] aPathElements,
                                                                int aIndex)
        Specified by:
        removeDirAt in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeDirAt in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeFrom

        default org.refcodes.structure.CanonicalMap removeFrom​(java.lang.Object... aPathElements)
        Specified by:
        removeFrom in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeFrom in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeFrom

        default org.refcodes.structure.CanonicalMap removeFrom​(java.lang.Object aPath)
        Specified by:
        removeFrom in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeFrom in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeFrom

        default org.refcodes.structure.CanonicalMap removeFrom​(java.lang.String aPath)
        Specified by:
        removeFrom in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeFrom in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • removeFrom

        default HttpBodyMap removeFrom​(java.lang.String... aPathElements)
        Specified by:
        removeFrom in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        removeFrom in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • withPut

        default HttpBodyMap withPut​(java.lang.Object aPath,
                                    java.lang.String aValue)
        Specified by:
        withPut in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPut

        default HttpBodyMap withPut​(java.lang.Object[] aPathElements,
                                    java.lang.String aValue)
                             throws java.lang.NumberFormatException
        Specified by:
        withPut in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
        Throws:
        java.lang.NumberFormatException
      • withPut

        default HttpBodyMap withPut​(java.lang.String[] aPathElements,
                                    java.lang.String aValue)
                             throws java.lang.NumberFormatException
        Specified by:
        withPut in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
        Throws:
        java.lang.NumberFormatException
      • withPutBoolean

        default HttpBodyMap withPutBoolean​(java.lang.Object[] aPathElements,
                                           java.lang.Boolean aValue)
        Specified by:
        withPutBoolean in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutBoolean

        default HttpBodyMap withPutBoolean​(java.lang.String[] aPathElements,
                                           java.lang.Boolean aValue)
        Specified by:
        withPutBoolean in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutByte

        default HttpBodyMap withPutByte​(java.lang.Object[] aPathElements,
                                        java.lang.Byte aValue)
        Specified by:
        withPutByte in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutByte

        default HttpBodyMap withPutByte​(java.lang.String[] aPathElements,
                                        java.lang.Byte aValue)
        Specified by:
        withPutByte in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutDouble

        default HttpBodyMap withPutDouble​(java.lang.Object[] aPathElements,
                                          java.lang.Double aValue)
        Specified by:
        withPutDouble in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutDouble

        default HttpBodyMap withPutDouble​(java.lang.String[] aPathElements,
                                          java.lang.Double aValue)
        Specified by:
        withPutDouble in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutFloat

        default HttpBodyMap withPutFloat​(java.lang.Object[] aPathElements,
                                         java.lang.Float aValue)
        Specified by:
        withPutFloat in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutFloat

        default HttpBodyMap withPutFloat​(java.lang.String[] aPathElements,
                                         java.lang.Float aValue)
        Specified by:
        withPutFloat in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutInteger

        default HttpBodyMap withPutInteger​(java.lang.Object[] aPathElements,
                                           java.lang.Integer aValue)
        Specified by:
        withPutInteger in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutInteger

        default HttpBodyMap withPutInteger​(java.lang.String[] aPathElements,
                                           java.lang.Integer aValue)
        Specified by:
        withPutInteger in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutLong

        default HttpBodyMap withPutLong​(java.lang.Object[] aPathElements,
                                        java.lang.Long aValue)
        Specified by:
        withPutLong in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutLong

        default HttpBodyMap withPutLong​(java.lang.String[] aPathElements,
                                        java.lang.Long aValue)
        Specified by:
        withPutLong in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutShort

        default HttpBodyMap withPutShort​(java.lang.Object[] aPathElements,
                                         java.lang.Short aValue)
        Specified by:
        withPutShort in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPutShort

        default HttpBodyMap withPutShort​(java.lang.String[] aPathElements,
                                         java.lang.Short aValue)
        Specified by:
        withPutShort in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
      • withPut

        default HttpBodyMap withPut​(java.lang.String aKey,
                                    java.lang.String aValue)
        Specified by:
        withPut in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
        Specified by:
        withPut in interface org.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<java.lang.String,T extends java.lang.Object,org.refcodes.structure.PathMap.PathMapBuilder<T extends java.lang.Object>>
        Specified by:
        withPut in interface org.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
        Specified by:
        withPut in interface org.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
      • withPut

        default HttpBodyMap withPut​(org.refcodes.structure.Relation<java.lang.String,java.lang.String> aRelation)
        Specified by:
        withPut in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
        Specified by:
        withPut in interface org.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<java.lang.String,T extends java.lang.Object,org.refcodes.structure.PathMap.PathMapBuilder<T extends java.lang.Object>>
        Specified by:
        withPut in interface org.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
      • withInsert

        default HttpBodyMap withInsert​(java.lang.Object aObj)
        Specified by:
        withInsert in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
        Specified by:
        withInsert in interface org.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
      • withInsertFrom

        default HttpBodyMap withInsertFrom​(java.lang.Object aFrom,
                                           java.lang.String aFromPath)
        Specified by:
        withInsertFrom in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
        Specified by:
        withInsertFrom in interface org.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
      • withInsertTo

        default HttpBodyMap withInsertTo​(java.lang.String aToPath,
                                         java.lang.Object aFrom)
        Specified by:
        withInsertTo in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
        Specified by:
        withInsertTo in interface org.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
      • withInsert

        default HttpBodyMap withInsert​(java.lang.String aToPath,
                                       java.lang.Object aFrom,
                                       java.lang.String aFromPath)
        Specified by:
        withInsert in interface org.refcodes.structure.CanonicalMap.CanonicalMapBuilder
        Specified by:
        withInsert in interface org.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
      • retrieveTo

        HttpBodyMap retrieveTo​(java.lang.String aToPath)
        Specified by:
        retrieveTo in interface org.refcodes.structure.CanonicalMap
        Specified by:
        retrieveTo in interface org.refcodes.structure.PathMap<java.lang.String>
      • retrieveTo

        default HttpBodyMap retrieveTo​(java.lang.Object aToPath)
        Specified by:
        retrieveTo in interface org.refcodes.structure.CanonicalMap
        Specified by:
        retrieveTo in interface org.refcodes.structure.PathMap<java.lang.String>
      • retrieveTo

        default HttpBodyMap retrieveTo​(java.lang.String... aToPathElements)
        Specified by:
        retrieveTo in interface org.refcodes.structure.CanonicalMap
        Specified by:
        retrieveTo in interface org.refcodes.structure.PathMap<java.lang.String>
      • retrieveTo

        default HttpBodyMap retrieveTo​(java.lang.Object... aToPathElements)
        Specified by:
        retrieveTo in interface org.refcodes.structure.CanonicalMap
        Specified by:
        retrieveTo in interface org.refcodes.structure.PathMap<java.lang.String>
      • retrieve

        HttpBodyMap retrieve​(java.lang.String aFromPath,
                             java.lang.String aToPath)
        Specified by:
        retrieve in interface org.refcodes.structure.CanonicalMap
        Specified by:
        retrieve in interface org.refcodes.structure.PathMap<java.lang.String>
      • retrieveFrom

        HttpBodyMap retrieveFrom​(java.lang.String aFromPath)
        Specified by:
        retrieveFrom in interface org.refcodes.structure.CanonicalMap
        Specified by:
        retrieveFrom in interface org.refcodes.structure.PathMap<java.lang.String>
      • retrieveFrom

        default HttpBodyMap retrieveFrom​(java.lang.Object aParentPath)
        Specified by:
        retrieveFrom in interface org.refcodes.structure.CanonicalMap
        Specified by:
        retrieveFrom in interface org.refcodes.structure.PathMap<java.lang.String>
      • retrieveFrom

        default HttpBodyMap retrieveFrom​(java.lang.String... aPathElements)
        Specified by:
        retrieveFrom in interface org.refcodes.structure.PathMap<java.lang.String>
      • retrieveFrom

        default HttpBodyMap retrieveFrom​(java.lang.Object... aPathElements)
        Specified by:
        retrieveFrom in interface org.refcodes.structure.CanonicalMap
        Specified by:
        retrieveFrom in interface org.refcodes.structure.PathMap<java.lang.String>
      • delete

        default java.lang.String delete​(java.lang.String aKey)
        Specified by:
        delete in interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
        Specified by:
        delete in interface org.refcodes.structure.Keys.MutableKeys<java.lang.String,T extends java.lang.Object>
        Specified by:
        delete in interface org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
      • getDirAt

        default HttpBodyMap getDirAt​(int aIndex)
        Specified by:
        getDirAt in interface org.refcodes.structure.CanonicalMap
        Specified by:
        getDirAt in interface org.refcodes.structure.PathMap<java.lang.String>
      • getDirAt

        default HttpBodyMap getDirAt​(java.lang.String aPath,
                                     int aIndex)
        Specified by:
        getDirAt in interface org.refcodes.structure.CanonicalMap
        Specified by:
        getDirAt in interface org.refcodes.structure.PathMap<java.lang.String>
      • query

        default HttpBodyMap query​(java.lang.String aPathQuery)
        Specified by:
        query in interface org.refcodes.structure.CanonicalMap
        Specified by:
        query in interface org.refcodes.structure.PathMap<java.lang.String>
      • queryTo

        default HttpBodyMap queryTo​(java.lang.String aPathQuery,
                                    java.lang.String aToPath)
        Specified by:
        queryTo in interface org.refcodes.structure.CanonicalMap
        Specified by:
        queryTo in interface org.refcodes.structure.PathMap<java.lang.String>
      • queryFrom

        default HttpBodyMap queryFrom​(java.lang.String aPathQuery,
                                      java.lang.String aFromPath)
        Specified by:
        queryFrom in interface org.refcodes.structure.CanonicalMap
        Specified by:
        queryFrom in interface org.refcodes.structure.PathMap<java.lang.String>
      • query

        default HttpBodyMap query​(java.lang.String aPathQuery,
                                  java.lang.String aFromPath,
                                  java.lang.String aToPath)
        Specified by:
        query in interface org.refcodes.structure.CanonicalMap
        Specified by:
        query in interface org.refcodes.structure.PathMap<java.lang.String>