Add message prioritization module
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / message-prioritizaion / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / message / prioritization / MessagePrioritizationData.kt
1 /*
2  * Copyright © 2018-2019 AT&T Intellectual Property.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization
18
19 import java.io.Serializable
20
21 object MessageActionConstants {
22     const val PRIORITIZE = "prioritize"
23 }
24
25 enum class MessageState(val id: String) {
26     NEW("new"),
27     WAIT("wait"),
28     EXPIRED("expired"),
29     PRIORITIZED("prioritized"),
30     AGGREGATED("aggregated"),
31     IGNORED("ignored"),
32     COMPLETED("completed"),
33 }
34
35 open class PrioritizationConfiguration : Serializable {
36     lateinit var expiryConfiguration: ExpiryConfiguration
37     lateinit var shutDownConfiguration: ShutDownConfiguration
38     lateinit var cleanConfiguration: CleanConfiguration
39     lateinit var inputTopicSelector: String // Consumer Configuration Selector
40     lateinit var expiredTopic: String // Publish Configuration Selector
41     lateinit var outputTopic: String // Publish Configuration Selector
42 }
43
44 open class ExpiryConfiguration : Serializable {
45     var frequencyMilli: Long = 30000L
46     var maxPollRecord: Int = 1000
47 }
48
49 open class ShutDownConfiguration : Serializable {
50     var waitMill: Long = 30000L
51 }
52
53 open class CleanConfiguration : Serializable {
54     var frequencyMilli: Long = 30000L
55     var expiredRecordsHoldDays: Int = 5
56 }
57
58 open class UpdateStateRequest : Serializable {
59     lateinit var id: String
60     var group: String? = null
61     var state: String? = null
62     var notifyMessage: String? = null
63 }
64
65 data class CorrelationCheckResponse(var message: String? = null,
66                                     var correlated: Boolean = false)
67
68 data class TypeCorrelationKey(val type: String, val correlationId: String)
69