Add components for PDP communication 78/83278/5
authorJim Hahn <jrh3@att.com>
Sun, 24 Mar 2019 12:13:58 +0000 (08:13 -0400)
committerJim Hahn <jrh3@att.com>
Tue, 26 Mar 2019 14:27:50 +0000 (10:27 -0400)
commitb44967d35c7be5c507ce156b14e6185618a84c6d
treeb353891b4ceab99ca2c851848ba8988b4af530d2
parent602572eb8abaf0ea6528ee45bd1006df16798ea9
Add components for PDP communication

Added PAP DAO interfaces.
Added Publisher.
Added TimerManager.
Added RequestDataParams.
Added PdpModifyRequestMapParams.
Added RequestData.
Added PdpModifyRequestMapTest.
Updated timer test.
Extracted nested MessageData classes into their own files.
Addressed merge conflict.
Removed unneeded methods from PapActivator.

Fixed mismatchint action name.

Change-Id: I3aebef68a62b48d9154dd7a4c4ff366f9914717c
Issue-ID: POLICY-1542
Signed-off-by: Jim Hahn <jrh3@att.com>
23 files changed:
main/src/main/java/org/onap/policy/pap/main/comm/PdpModifyRequestMap.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/comm/Publisher.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/comm/QueueToken.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/comm/RequestData.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/comm/TimerManager.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/comm/msgdata/MessageData.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/comm/msgdata/StateChangeData.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/comm/msgdata/UpdateData.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/parameters/PdpModifyRequestMapParams.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/parameters/RequestDataParams.java [new file with mode: 0644]
main/src/main/java/org/onap/policy/pap/main/startstop/PapActivator.java
main/src/test/java/org/onap/policy/pap/main/comm/PdpModifyRequestMapTest.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/comm/PublisherTest.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/comm/QueueTokenTest.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/comm/RequestDataTest.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/comm/Threaded.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/comm/TimerManagerTest.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/comm/msgdata/MessageDataTest.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/comm/msgdata/StateChangeDataTest.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/comm/msgdata/UpdateDataTest.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/parameters/TestPdpModifyRequestMapParams.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/parameters/TestRequestDataParams.java [new file with mode: 0644]
main/src/test/java/org/onap/policy/pap/main/startstop/TestPapActivator.java