mirror of
https://github.com/NetherlandsForensicInstitute/hansken-extraction-plugin-sdk-documentation.git
synced 2026-02-14 14:09:49 +00:00
0.7.0 v2
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 55 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 28 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 207 KiB After Width: | Height: | Size: 225 KiB |
@@ -6,7 +6,10 @@ are important to plugin developers. For a full list of changes per version, plea
|
||||
|
||||
.. If present, remove `..` before `## |version|` if you create a new entry after a previous release.
|
||||
|
||||
## |version|
|
||||
.. ## |version|
|
||||
|
||||
|
||||
## 0.7.0
|
||||
|
||||
* Escaping the `/` character in matchers is optional.
|
||||
This simplifies and aims for better HQL and HQL-Lite compatability.
|
||||
@@ -20,6 +23,11 @@ are important to plugin developers. For a full list of changes per version, plea
|
||||
* Hansken returns `file.path` properties as a `String` property, instead of a `List<String>`.
|
||||
Example: `trace.get("file.path")` now returns `"/dev/null"`, this was `["dev", "null"]`.
|
||||
|
||||
## 0.6.3
|
||||
|
||||
* A plugin can now write multiple data streams to a single trace concurrently,
|
||||
e.g. write both `decrypted` and `ocr` at the same time. See the ":ref:`datastreams java`" code snippets for
|
||||
general examples on adding data to a trace.
|
||||
|
||||
## 0.6.1
|
||||
|
||||
|
||||
@@ -6,7 +6,10 @@ are important to plugin developers. For a full list of changes per version, plea
|
||||
|
||||
.. If present, remove `..` before `## |version|` if you create a new entry after a previous release.
|
||||
|
||||
## |version|
|
||||
.. ## |version|
|
||||
|
||||
|
||||
## 0.7.0
|
||||
|
||||
* Escaping the `/` character in matchers is optional.
|
||||
This simplifies and aims for better HQL and HQL-Lite compatability.
|
||||
@@ -25,6 +28,20 @@ are important to plugin developers. For a full list of changes per version, plea
|
||||
* Improved plugin loading when using `serve_plugin` and `build_plugin`:
|
||||
`import` statements now work for modules (python files) that are located the same directory structure of a plugin.
|
||||
|
||||
* A plugin can now stream data to a trace using `trace.open(mode='wb')`.
|
||||
This removes the limit on the size of data that could be written.
|
||||
See also :ref:`the python code snippet<python_snippets_data_streaming>`.
|
||||
|
||||
Example:
|
||||
|
||||
```python
|
||||
with trace.open(mode='wb') as writer:
|
||||
writer.write(b'a string')
|
||||
writer.write(bytes(another_string, 'utf-8'))
|
||||
```
|
||||
|
||||
_note_: this does not work when using `run_with_hanskenpy`.
|
||||
|
||||
## 0.6.1
|
||||
|
||||
* The docker image build script `build_plugin` has been updated to allow for extension of the docker command.
|
||||
|
||||
@@ -130,6 +130,8 @@ data = {'raw': b'...'}
|
||||
trace.update(data=data);
|
||||
```
|
||||
|
||||
.. _python_snippets_data_streaming:
|
||||
|
||||
#### Streaming data
|
||||
|
||||
.. warning:: Streaming data does not work with the Hansken.py runner because Hansken.py does not support it. It does
|
||||
@@ -142,7 +144,7 @@ To do this, use the `with trace.open(data_type=..., mode='wb')` syntax. Here are
|
||||
Stream strings to `raw` (default) datastream:
|
||||
|
||||
```python
|
||||
with trace.open(mode='wb') as writer:
|
||||
with trace.open(mode='wb') as writer:
|
||||
writer.write(b'a string')
|
||||
writer.write(bytes(another_string, 'utf-8'))
|
||||
```
|
||||
@@ -239,4 +241,4 @@ Example:
|
||||
def process(self, trace, data_context):
|
||||
# set the preview data for the image/png MIME-type
|
||||
trace.update('preview.image/png', b'\x00\xff')
|
||||
```
|
||||
```
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>All Classes (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>All Classes (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>All Packages (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Constant Field Values (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Deprecated List (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>API Help (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Index (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Overview (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
|
||||
Binary file not shown.
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Author.Builder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Author (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>BaseExtractionPlugin (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>BatchSearchResult (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>DataContext (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>DataWriter (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>DeferredExtractionPlugin (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>ExtractionPlugin (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>ImmutableTrace (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>LatLong (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>MaturityLevel (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>MetaExtractionPlugin (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>PluginId (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>PluginInfo.Builder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>PluginInfo (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>PluginResources.Builder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>PluginResources (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>PluginType (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>RandomAccessData (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>SearchResult (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>SearchTrace (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Trace.Tracelet (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Trace.TraceletBuilder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Trace.TraceletProperty (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Trace (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>TraceSearcher (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Vector (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.Author.Builder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.Author (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.BaseExtractionPlugin (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.BatchSearchResult (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.DataContext (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.DataWriter (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.DeferredExtractionPlugin (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.ExtractionPlugin (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.ImmutableTrace (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.LatLong (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.MaturityLevel (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.MetaExtractionPlugin (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.PluginId (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.PluginInfo.Builder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.PluginInfo (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.PluginResources.Builder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.PluginResources (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.PluginType (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.RandomAccessData (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.SearchResult (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.SearchTrace (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.Trace.Tracelet (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.Trace.TraceletBuilder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.Trace.TraceletProperty (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.Trace (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.TraceSearcher (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.Vector (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>org.hansken.plugin.extraction.api (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>org.hansken.plugin.extraction.api Class Hierarchy (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Package org.hansken.plugin.extraction.api (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>DataRange (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>DataTransformation (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>RangedDataTransformation.Builder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>RangedDataTransformation (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.transformations.DataRange (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.api.transformations.DataTransformation (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.transformations.RangedDataTransformation.Builder (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.api.transformations.RangedDataTransformation (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>org.hansken.plugin.extraction.api.transformations (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>org.hansken.plugin.extraction.api.transformations Class Hierarchy (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Package org.hansken.plugin.extraction.api.transformations (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>ArgChecks (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>ThrowingConsumer (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Class org.hansken.plugin.extraction.util.ArgChecks (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Interface org.hansken.plugin.extraction.util.ThrowingConsumer (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>org.hansken.plugin.extraction.util (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>org.hansken.plugin.extraction.util Class Hierarchy (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Uses of Package org.hansken.plugin.extraction.util (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>api 0.7.0 API</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<script type="text/javascript">window.location.replace('index.html')</script>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (11.0.19) on Wed Jun 21 11:28:08 CEST 2023 -->
|
||||
<!-- Generated by javadoc (11.0.19) on Fri Jun 23 09:51:24 CEST 2023 -->
|
||||
<title>Class Hierarchy (api 0.7.0 API)</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="dc.created" content="2023-06-21">
|
||||
<meta name="dc.created" content="2023-06-23">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -60,6 +60,7 @@
|
||||
<li class="toctree-l1 current"><a class="current reference internal" href="#">Changelog</a><ul>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#release-version">Release-0.7.0
|
||||
</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#release-0-7-0">Release-0.7.0</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#release-0-6-3">Release-0.6.3</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#release-0-6-2">Release-0.6.2</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#release-0-6-1">Release-0.6.1</a></li>
|
||||
@@ -134,6 +135,13 @@ For the API changelog pages see:</p>
|
||||
<h2>Release-0.7.0
|
||||
<a class="headerlink" href="#release-version" title="Permalink to this heading"></a></h2>
|
||||
<ul class="simple">
|
||||
<li><p>HANSKEN-19071: Update Python ‘getting started’ screenshots</p></li>
|
||||
<li><p>HANSKEN-17675: Enable writing streaming data from Python</p></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="release-0-7-0">
|
||||
<h2>Release-0.7.0<a class="headerlink" href="#release-0-7-0" title="Permalink to this heading"></a></h2>
|
||||
<ul class="simple">
|
||||
<li><p>HANSKEN-18677: Added HQL-Lite auto-escaping & fixed fullmatch wildcard support</p></li>
|
||||
<li><p>HANSKEN-19179: Update all project dependencies</p></li>
|
||||
<li><p>HANSKEN-19148: Improve build_plugin and test framework output (by passing subprocess output directly to the terminal)</p></li>
|
||||
|
||||
@@ -55,17 +55,17 @@
|
||||
<li class="toctree-l1"><a class="reference internal" href="../spec.html">Extraction Plugin specifications</a></li>
|
||||
<li class="toctree-l1 current"><a class="reference internal" href="../java.html">Java</a><ul class="current">
|
||||
<li class="toctree-l2 current"><a class="current reference internal" href="#">Java API Changelog</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#version">0.7.0
|
||||
</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id1">0.6.1</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id2">0.6.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id3">0.5.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id4">0.4.13</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id5">0.4.7</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id6">0.4.6</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id7">0.4.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id8">0.3.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id9">0.2.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id1">0.7.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id2">0.6.3</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id3">0.6.1</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id4">0.6.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id5">0.5.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id6">0.4.13</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id7">0.4.7</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id8">0.4.6</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id9">0.4.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id10">0.3.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id11">0.2.0</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="prerequisites.html">Prerequisites</a></li>
|
||||
@@ -113,9 +113,8 @@
|
||||
<p>This document summarizes all important API changes in the Extraction Plugin API. This document only shows changes that
|
||||
are important to plugin developers. For a full list of changes per version, please refer to the general
|
||||
<a class="reference internal" href="../../changes.html#changelog"><span class="std std-ref">changelog</span></a>.</p>
|
||||
<section id="version">
|
||||
<h2>0.7.0
|
||||
<a class="headerlink" href="#version" title="Permalink to this heading"></a></h2>
|
||||
<section id="id1">
|
||||
<h2>0.7.0<a class="headerlink" href="#id1" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>Escaping the <code class="docutils literal notranslate"><span class="pre">/</span></code> character in matchers is optional.
|
||||
This simplifies and aims for better HQL and HQL-Lite compatability.
|
||||
@@ -130,14 +129,22 @@ See for more information and examples the <a class="reference internal" href="..
|
||||
Example: <code class="docutils literal notranslate"><span class="pre">trace.get("file.path")</span></code> now returns <code class="docutils literal notranslate"><span class="pre">"/dev/null"</span></code>, this was <code class="docutils literal notranslate"><span class="pre">["dev",</span> <span class="pre">"null"]</span></code>.</p></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id1">
|
||||
<h2>0.6.1<a class="headerlink" href="#id1" title="Permalink to this heading"></a></h2>
|
||||
<section id="id2">
|
||||
<h2>0.6.3<a class="headerlink" href="#id2" title="Permalink to this heading"></a></h2>
|
||||
<ul class="simple">
|
||||
<li><p>A plugin can now write multiple data streams to a single trace concurrently,
|
||||
e.g. write both <code class="docutils literal notranslate"><span class="pre">decrypted</span></code> and <code class="docutils literal notranslate"><span class="pre">ocr</span></code> at the same time. See the “<a class="reference internal" href="snippets.html#datastreams-java"><span class="std std-ref">Adding data to a trace</span></a>” code snippets for
|
||||
general examples on adding data to a trace.</p></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id3">
|
||||
<h2>0.6.1<a class="headerlink" href="#id3" title="Permalink to this heading"></a></h2>
|
||||
<ul class="simple">
|
||||
<li><p>The JAVA SDK is now distributed through maven central instead of the Hansken community.</p></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id2">
|
||||
<h2>0.6.0<a class="headerlink" href="#id2" title="Permalink to this heading"></a></h2>
|
||||
<section id="id4">
|
||||
<h2>0.6.0<a class="headerlink" href="#id4" title="Permalink to this heading"></a></h2>
|
||||
<div class="admonition warning">
|
||||
<p class="admonition-title">Warning</p>
|
||||
<p>It is highly recommended to upgrade your plugin to this new version.
|
||||
@@ -182,8 +189,8 @@ details.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id3">
|
||||
<h2>0.5.0<a class="headerlink" href="#id3" title="Permalink to this heading"></a></h2>
|
||||
<section id="id5">
|
||||
<h2>0.5.0<a class="headerlink" href="#id5" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>Add new tracelet api <code class="docutils literal notranslate"><span class="pre">Trace.addTracelet(type,</span> <span class="pre">consumer)</span></code>.
|
||||
It can be used like this:</p>
|
||||
@@ -201,15 +208,15 @@ It can be used like this:</p>
|
||||
<li><p>Support vector data type in trace properties.</p></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id4">
|
||||
<h2>0.4.13<a class="headerlink" href="#id4" title="Permalink to this heading"></a></h2>
|
||||
<section id="id6">
|
||||
<h2>0.4.13<a class="headerlink" href="#id6" title="Permalink to this heading"></a></h2>
|
||||
<ul class="simple">
|
||||
<li><p>When writing input search traces for tests, it is no longer required to explicitly set an <code class="docutils literal notranslate"><span class="pre">id</span></code> property.
|
||||
These are automatically generated when executing tests.</p></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id5">
|
||||
<h2>0.4.7<a class="headerlink" href="#id5" title="Permalink to this heading"></a></h2>
|
||||
<section id="id7">
|
||||
<h2>0.4.7<a class="headerlink" href="#id7" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>A new convenience method <code class="docutils literal notranslate"><span class="pre">id(String,</span> <span class="pre">String,</span> <span class="pre">String)</span></code> is added to the PluginInfo builder. This removes some
|
||||
boilerplate code when setting the pluginId. More details on the plugin naming conventions can be found at the
|
||||
@@ -223,8 +230,8 @@ boilerplate code when setting the pluginId. More details on the plugin naming co
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id6">
|
||||
<h2>0.4.6<a class="headerlink" href="#id6" title="Permalink to this heading"></a></h2>
|
||||
<section id="id8">
|
||||
<h2>0.4.6<a class="headerlink" href="#id8" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>It is now possible to specify maximum system resources in the <code class="docutils literal notranslate"><span class="pre">PluginInfo</span></code>. To run a plugin with 0.5 cpu (= 0.5
|
||||
vCPU/Core/hyperthread) and 1 gb memory, for example, the following configuration can be added to <code class="docutils literal notranslate"><span class="pre">PluginInfo</span></code>:</p>
|
||||
@@ -240,8 +247,8 @@ vCPU/Core/hyperthread) and 1 gb memory, for example, the following configuration
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id7">
|
||||
<h2>0.4.0<a class="headerlink" href="#id7" title="Permalink to this heading"></a></h2>
|
||||
<section id="id9">
|
||||
<h2>0.4.0<a class="headerlink" href="#id9" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>Extraction Plugins are now identified with a <code class="docutils literal notranslate"><span class="pre">PluginInfo.PluginId</span></code> containing a domain, category and name. The
|
||||
method <code class="docutils literal notranslate"><span class="pre">PluginInfo.name(pluginName)</span></code> has been replaced by <code class="docutils literal notranslate"><span class="pre">PluginInfo.id(new</span> <span class="pre">PluginId(domain,</span> <span class="pre">category,</span> <span class="pre">name)</span></code>. More
|
||||
@@ -266,8 +273,8 @@ the <code class="docutils literal notranslate"><span class="pre">Apache</span> <
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id8">
|
||||
<h2>0.3.0<a class="headerlink" href="#id8" title="Permalink to this heading"></a></h2>
|
||||
<section id="id10">
|
||||
<h2>0.3.0<a class="headerlink" href="#id10" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>Extraction Plugins can now create new datastreams on a Trace through data transformations. Data transformations
|
||||
describe how data can be obtained from a source.</p>
|
||||
@@ -296,8 +303,8 @@ data transformation with two ranges:</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id9">
|
||||
<h2>0.2.0<a class="headerlink" href="#id9" title="Permalink to this heading"></a></h2>
|
||||
<section id="id11">
|
||||
<h2>0.2.0<a class="headerlink" href="#id11" title="Permalink to this heading"></a></h2>
|
||||
<div class="admonition warning">
|
||||
<p class="admonition-title">Warning</p>
|
||||
<p>This is an API breaking change. Plugins created with an earlier version of the extraction plugin SDK are
|
||||
|
||||
@@ -56,22 +56,21 @@
|
||||
<li class="toctree-l1"><a class="reference internal" href="../java.html">Java</a></li>
|
||||
<li class="toctree-l1 current"><a class="reference internal" href="../python.html">Python</a><ul class="current">
|
||||
<li class="toctree-l2 current"><a class="current reference internal" href="#">Python API Changelog</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#version">0.7.0
|
||||
</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id1">0.6.1</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id2">0.6.0</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id1">0.7.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id2">0.6.1</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id3">0.6.0</a><ul>
|
||||
<li class="toctree-l4"><a class="reference internal" href="#build-pipeline-change">Build pipeline change</a></li>
|
||||
<li class="toctree-l4"><a class="reference internal" href="#api-changes">API changes</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id3">0.5.1</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id4">0.5.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id5">0.4.13</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id6">0.4.7</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id7">0.4.6</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id8">0.4.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id9">0.3.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id10">0.2.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id4">0.5.1</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id5">0.5.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id6">0.4.13</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id7">0.4.7</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id8">0.4.6</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id9">0.4.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id10">0.3.0</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id11">0.2.0</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="prerequisites.html">Prerequisites</a></li>
|
||||
@@ -120,9 +119,8 @@
|
||||
<p>This document summarizes all important API changes in the Extraction Plugin API. This document only shows changes that
|
||||
are important to plugin developers. For a full list of changes per version, please refer to the general
|
||||
<a class="reference internal" href="../../changes.html#changelog"><span class="std std-ref">changelog</span></a>.</p>
|
||||
<section id="version">
|
||||
<h2>0.7.0
|
||||
<a class="headerlink" href="#version" title="Permalink to this heading"></a></h2>
|
||||
<section id="id1">
|
||||
<h2>0.7.0<a class="headerlink" href="#id1" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>Escaping the <code class="docutils literal notranslate"><span class="pre">/</span></code> character in matchers is optional.
|
||||
This simplifies and aims for better HQL and HQL-Lite compatability.
|
||||
@@ -139,10 +137,21 @@ instead of a list of strings.
|
||||
Example: <code class="docutils literal notranslate"><span class="pre">trace.get('file.path')</span></code> now returns <code class="docutils literal notranslate"><span class="pre">'/dev/null'</span></code>, this was <code class="docutils literal notranslate"><span class="pre">['dev',</span> <span class="pre">'null']</span></code>.</p></li>
|
||||
<li><p>Improved plugin loading when using <code class="docutils literal notranslate"><span class="pre">serve_plugin</span></code> and <code class="docutils literal notranslate"><span class="pre">build_plugin</span></code>:
|
||||
<code class="docutils literal notranslate"><span class="pre">import</span></code> statements now work for modules (python files) that are located the same directory structure of a plugin.</p></li>
|
||||
<li><p>A plugin can now stream data to a trace using <code class="docutils literal notranslate"><span class="pre">trace.open(mode='wb')</span></code>.
|
||||
This removes the limit on the size of data that could be written.
|
||||
See also <a class="reference internal" href="snippets.html#python-snippets-data-streaming"><span class="std std-ref">the python code snippet</span></a>.</p>
|
||||
<p>Example:</p>
|
||||
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="k">with</span> <span class="n">trace</span><span class="o">.</span><span class="n">open</span><span class="p">(</span><span class="n">mode</span><span class="o">=</span><span class="s1">'wb'</span><span class="p">)</span> <span class="k">as</span> <span class="n">writer</span><span class="p">:</span>
|
||||
<span class="n">writer</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="sa">b</span><span class="s1">'a string'</span><span class="p">)</span>
|
||||
<span class="n">writer</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="nb">bytes</span><span class="p">(</span><span class="n">another_string</span><span class="p">,</span> <span class="s1">'utf-8'</span><span class="p">))</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p><em>note</em>: this does not work when using <code class="docutils literal notranslate"><span class="pre">run_with_hanskenpy</span></code>.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id1">
|
||||
<h2>0.6.1<a class="headerlink" href="#id1" title="Permalink to this heading"></a></h2>
|
||||
<section id="id2">
|
||||
<h2>0.6.1<a class="headerlink" href="#id2" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>The docker image build script <code class="docutils literal notranslate"><span class="pre">build_plugin</span></code> has been updated to allow for extension of the docker command.
|
||||
This can be especially handy for specifying a proxy. You should build your plugin container image with the following
|
||||
@@ -158,8 +167,8 @@ command:</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id2">
|
||||
<h2>0.6.0<a class="headerlink" href="#id2" title="Permalink to this heading"></a></h2>
|
||||
<section id="id3">
|
||||
<h2>0.6.0<a class="headerlink" href="#id3" title="Permalink to this heading"></a></h2>
|
||||
<div class="admonition warning">
|
||||
<p class="admonition-title">Warning</p>
|
||||
<p>This is an API breaking change.
|
||||
@@ -277,8 +286,8 @@ Then, you should build your plugin container image with the following command:</
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
<section id="id3">
|
||||
<h2>0.5.1<a class="headerlink" href="#id3" title="Permalink to this heading"></a></h2>
|
||||
<section id="id4">
|
||||
<h2>0.5.1<a class="headerlink" href="#id4" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>Simplify tracelet properties by making the tracelet type prefix optional.</p>
|
||||
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="c1"># using a Tracelet object</span>
|
||||
@@ -294,8 +303,8 @@ Then, you should build your plugin container image with the following command:</
|
||||
<li><p>Enabled <em>manual</em> plugin testing, as described on <a class="reference internal" href="testing.html#python-testing"><span class="std std-ref">advanced use of the test framework in Python</span></a>.</p></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id4">
|
||||
<h2>0.5.0<a class="headerlink" href="#id4" title="Permalink to this heading"></a></h2>
|
||||
<section id="id5">
|
||||
<h2>0.5.0<a class="headerlink" href="#id5" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>Support vector data type in trace properties.</p>
|
||||
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="n">embedding</span> <span class="o">=</span> <span class="n">Vector</span><span class="o">.</span><span class="n">from_sequence</span><span class="p">((</span><span class="n">width</span><span class="p">,</span> <span class="n">height</span><span class="p">))</span>
|
||||
@@ -309,23 +318,23 @@ Then, you should build your plugin container image with the following command:</
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id5">
|
||||
<h2>0.4.13<a class="headerlink" href="#id5" title="Permalink to this heading"></a></h2>
|
||||
<section id="id6">
|
||||
<h2>0.4.13<a class="headerlink" href="#id6" title="Permalink to this heading"></a></h2>
|
||||
<ul class="simple">
|
||||
<li><p>When writing input search traces for tests, it is no longer required to explicitly set an <code class="docutils literal notranslate"><span class="pre">id</span></code> property.
|
||||
These are automatically generated when executing tests.</p></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id6">
|
||||
<h2>0.4.7<a class="headerlink" href="#id6" title="Permalink to this heading"></a></h2>
|
||||
<section id="id7">
|
||||
<h2>0.4.7<a class="headerlink" href="#id7" title="Permalink to this heading"></a></h2>
|
||||
<ul class="simple">
|
||||
<li><p>More <code class="docutils literal notranslate"><span class="pre">$data</span></code> matchers are supported in Hansken.py plugin runner. Before this improvement it was only possible to match
|
||||
on <code class="docutils literal notranslate"><span class="pre">$data.type</span></code>. Now it is also possible to match for example on <code class="docutils literal notranslate"><span class="pre">$data.mimeType</span></code> and <code class="docutils literal notranslate"><span class="pre">$data.mimeClass</span></code>. The <code class="docutils literal notranslate"><span class="pre">$data</span></code>
|
||||
matcher should still be at the end of the query as before.</p></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id7">
|
||||
<h2>0.4.6<a class="headerlink" href="#id7" title="Permalink to this heading"></a></h2>
|
||||
<section id="id8">
|
||||
<h2>0.4.6<a class="headerlink" href="#id8" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>It is now possible to specify maximum system resources in the <code class="docutils literal notranslate"><span class="pre">PluginInfo</span></code>. To run a plugin with 0.5 cpu (= 0.5
|
||||
vCPU/Core/hyperthread) and 1 gb memory, for example, the following configuration can be added to <code class="docutils literal notranslate"><span class="pre">PluginInfo</span></code>:</p>
|
||||
@@ -336,8 +345,8 @@ vCPU/Core/hyperthread) and 1 gb memory, for example, the following configuration
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id8">
|
||||
<h2>0.4.0<a class="headerlink" href="#id8" title="Permalink to this heading"></a></h2>
|
||||
<section id="id9">
|
||||
<h2>0.4.0<a class="headerlink" href="#id9" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>Extraction Plugins are now identified with a <code class="docutils literal notranslate"><span class="pre">PluginInfo.PluginId</span></code> containing a domain, category and name. The
|
||||
method <code class="docutils literal notranslate"><span class="pre">PluginInfo.name(pluginName)</span></code> has been replaced by <code class="docutils literal notranslate"><span class="pre">PluginInfo.id(new</span> <span class="pre">PluginId(domain,</span> <span class="pre">category,</span> <span class="pre">name)</span></code>. More
|
||||
@@ -363,8 +372,8 @@ the <code class="docutils literal notranslate"><span class="pre">Apache</span> <
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id9">
|
||||
<h2>0.3.0<a class="headerlink" href="#id9" title="Permalink to this heading"></a></h2>
|
||||
<section id="id10">
|
||||
<h2>0.3.0<a class="headerlink" href="#id10" title="Permalink to this heading"></a></h2>
|
||||
<ul>
|
||||
<li><p>Extraction Plugins can now create new datastreams on a Trace through data transformations. Data transformations
|
||||
describe how data can be obtained from a source.</p>
|
||||
@@ -393,8 +402,8 @@ data transformation with two ranges:</p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="id10">
|
||||
<h2>0.2.0<a class="headerlink" href="#id10" title="Permalink to this heading"></a></h2>
|
||||
<section id="id11">
|
||||
<h2>0.2.0<a class="headerlink" href="#id11" title="Permalink to this heading"></a></h2>
|
||||
<div class="admonition warning">
|
||||
<p class="admonition-title">Warning</p>
|
||||
<p>This is an API breaking change.
|
||||
|
||||
@@ -222,7 +222,7 @@ a direct subset of another data stream..</p>
|
||||
</pre></div>
|
||||
</div>
|
||||
<section id="streaming-data">
|
||||
<h4>Streaming data<a class="headerlink" href="#streaming-data" title="Permalink to this heading"></a></h4>
|
||||
<span id="python-snippets-data-streaming"></span><h4>Streaming data<a class="headerlink" href="#streaming-data" title="Permalink to this heading"></a></h4>
|
||||
<div class="admonition warning">
|
||||
<p class="admonition-title">Warning</p>
|
||||
<p>Streaming data does not work with the Hansken.py runner because Hansken.py does not support it. It does
|
||||
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user