aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/services/PombaServiceImpl.java
blob: 21b1ec1c35e28c18b33a0d6e80e037644d922e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.onap.vid.services;

import org.onap.vid.aai.PombaClientInterface;
import org.onap.vid.model.PombaInstance.PombaRequest;
import org.springframework.beans.factory.annotation.Autowired;

public class PombaServiceImpl implements PombaService {

    @Autowired
    private PombaClientInterface pombaClientInterface;


    @Override
    public void verify(PombaRequest request) {
        pombaClientInterface.verify(request);
    }
}