615dba4c87255427b0744ec9344f804c3e35b139
[policy/drools-applications.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.drools.apps.controlloop.feature.tdjam;
22
23 import org.onap.policy.drools.features.PolicyEngineFeatureApi;
24
25 /**
26  * TDJAM Use Cases installation as a feature saves time loading the controller at
27  * runtime over the usual installation from nexus. It also reduces potential for errors in
28  * the pom.xml generated in the brmsgw side.
29  *
30  * <p/>
31  * There is no impact on other components as the brmsgw etc .. they will continue
32  * operating as usual.
33  *
34  * <p/>
35  * This class will be expanded in the future for additional functionality
36  *
37  */
38 public class TdjamFeature implements PolicyEngineFeatureApi {
39
40     public static final int SEQNO = 1000;
41
42     @Override
43     public int getSequenceNumber() {
44         return SEQNO;
45     }
46 }