Package burp.api.montoya.persistence
Interface Node
-
- All Superinterfaces:
ByteArraySupport,DeleteSupport,KeySupport,PrimitiveListSupport,PrimitivesSupport,RequestResponseSupport
public interface Node extends PrimitivesSupport, PrimitiveListSupport, ByteArraySupport, RequestResponseSupport, KeySupport, DeleteSupport
This interface represents an instance of a class that allows data to be stored and accessed from the Burp project. It has support for HTTP requests, HTTP responses, byte arrays, primitives, primitive collections and Node hierarchies.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodechildNode(java.lang.String key)Returns the aNodeto which the specified key is mapped.-
Methods inherited from interface burp.api.montoya.persistence.support.ByteArraySupport
getByteArray, getByteArrayList, setByteArray, setByteArrayList
-
Methods inherited from interface burp.api.montoya.persistence.support.DeleteSupport
delete
-
Methods inherited from interface burp.api.montoya.persistence.support.KeySupport
listKeys
-
Methods inherited from interface burp.api.montoya.persistence.support.PrimitiveListSupport
getBooleanList, getIntegerList, getLongList, getShortList, getStringList, setBooleanList, setIntegerList, setLongList, setShortList, setStringList
-
Methods inherited from interface burp.api.montoya.persistence.support.PrimitivesSupport
getBoolean, getByte, getInteger, getLong, getShort, getString, setBoolean, setByte, setInteger, setLong, setShort, setString
-
Methods inherited from interface burp.api.montoya.persistence.support.RequestResponseSupport
getHttpRequest, getHttpRequestList, getHttpRequestResponse, getHttpRequestResponseList, getHttpResponse, getHttpResponseList, setHttpRequest, setHttpRequestList, setHttpRequestResponse, setHttpRequestResponseList, setHttpResponse, setHttpResponseList
-
-
-
-
Method Detail
-
childNode
Node childNode(java.lang.String key)
Returns the aNodeto which the specified key is mapped. or a new Node if this map contains no mapping for the key.- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or
new
Nodeif this map contains no mapping for the key
-
-