summaryrefslogtreecommitdiffstats
path: root/docs/sections/apis/SDK.rst
blob: e1ffc6094883ff391ffffb4d40f8dd44f563bc5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
.. This work is licensed under a
   Creative Commons Attribution 4.0 International License.


DCAE SDK
========

.. contents::
    :depth: 3
..

Overview
--------

DCAE SDK contains utilities and clients which may be used for fetching
configuration from CBS, consuming messages from DMaaP, etc. SDK is written in Java.

Introduction
------------

      SDK Maven dependencies (modules).

      .. code-block:: XML

            <properties>
                <sdk.version>1.3.4</sdk.version>
            </properties>

            <dependencies>

                <dependency>
                  <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
                  <artifactId>cbs-client</artifactId>
                  <version>${sdk.version}</version>
                </dependency>

                <dependency>
                  <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
                  <artifactId>dmaap-client</artifactId>
                  <version>${sdk.version}</version>
                </dependency>

                <dependency>
                  <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
                  <artifactId>http-client</artifactId>
                  <version>${sdk.version}</version>
                </dependency>

                <dependency>
                  <groupId>org.onap.dcaegen2.services.sdk.security.crypt</groupId>
                  <artifactId>crypt-password</artifactId>
                  <version>${sdk.version}</version>
                </dependency>

                <dependency>
                  <groupId>org.onap.dcaegen2.services.sdk.security</groupId>
                  <artifactId>ssl</artifactId>
                  <version>${sdk.version}</version>
                </dependency>

                <dependency>
                  <groupId>org.onap.dcaegen2.services.sdk</groupId>
                  <artifactId>hvvesclient-producer-api</artifactId>
                  <version>${sdk.version}</version>
                </dependency>

                <dependency>
                  <groupId>org.onap.dcaegen2.services.sdk</groupId>
                  <artifactId>hvvesclient-producer-impl</artifactId>
                  <version>${sdk.version}</version>
                  <scope>runtime</scope>
                </dependency>

                <!-- more to go -->

            </dependencies>


Revision history
----------------

   **1.3.4**
      - Usage of Java 11

   **1.3.3-SNAPSHOT**
      - Upgrade CBS to support SSL
      - Fix static code vulnerabilities
      - Exclude IT from tests
      - Remove AAI client from SDK

   **1.3.2-SNAPSHOT**
      - Restructure AAI client
      - Get rid of common-dependency module
      - Rearrange files in packages inside rest-services

   **1.3.1-SNAPSHOT**
      - Bugfix release: AAI client
         - Make AaiGetServiceInstanceClient build correct path to the service resource in AAI

   **1.3.0-SNAPSHOT** (ElAlto - under development)
      - All El-Alto work noted under 1.2.0-SNAPSHOT will roll into this version
      - Version update was done for tracking global-jjb migration work and corresponding submission - https://gerrit.onap.org/r/#/c/dcaegen2/services/sdk/+/89902/