summaryrefslogtreecommitdiffstats
path: root/dcaedt_catalog/asdc/src/main/java/org/onap/sdc/dcae/catalog/asdc/ASDCUtilsController.java
blob: 377e71bf3b32543a18162cac00c23562b244708f (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
package org.onap.sdc.dcae.catalog.asdc;

import org.onap.sdc.common.onaplog.Enums.LogLevel;
import org.onap.sdc.common.onaplog.OnapLoggerDebug;
import org.springframework.beans.BeansException;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;


@RestController
@ConfigurationProperties(prefix="asdcUtilsController")
public class ASDCUtilsController implements ApplicationContextAware {

	private OnapLoggerDebug debugLogger = OnapLoggerDebug.getInstance();

	public void setApplicationContext(ApplicationContext theCtx) throws BeansException {
		// no use for app context
	}

	@PostConstruct
	public void initController() {
		debugLogger.log(LogLevel.DEBUG, this.getClass().getName(),"initASDCUtilsController");
		debugLogger.log(LogLevel.DEBUG, this.getClass().getName(),"ASDCUtilsController started");
	}

	@PreDestroy
	public void cleanupController() {
		debugLogger.log(LogLevel.DEBUG, this.getClass().getName(),"cleanupASDCUtilsController");
	}

}