fixing warnings from checkstyle in common-app-api
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / kpi / api / ASDCKpiApi.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.sdc.common.kpi.api;
22
23 import org.openecomp.sdc.common.log.wrappers.Logger;
24
25 public class ASDCKpiApi {
26
27     private static Logger log = Logger.getLogger(ASDCKpiApi.class.getName());
28
29     /* Number of activated resource imports. */
30     public static void countImportResourcesKPI() {
31         // TODO Auto-generated method stub
32         log.trace("Number of  activated resource imports.");
33
34     }
35
36     /* Number of created resources. */
37     public static void countCreatedResourcesKPI() {
38         // TODO Auto-generated method stub
39         log.trace("Number of  created resources.");
40
41     }
42
43     /* Number of created services */
44     public static void countCreatedServicesKPI() {
45         // TODO Auto-generated method stub
46         log.trace("Number of created services.");
47
48     }
49
50     /*
51      * Number of ASDC portal accesses ( number of activated user authorizations)
52      */
53     public static void countUsersAuthorizations() {
54         // TODO Auto-generated method stub
55         log.trace("Number of activated distribution");
56
57     }
58
59     /* Number of activated distribution */
60     public static void countActivatedDistribution() {
61         // TODO Auto-generated method stub
62         log.trace("Number of activated distribution");
63
64     }
65
66 }