aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/aai/AAIValidatorImpl.java
blob: be39c5fb8bc9fdf7be0e1c45c64cc2121f6d2601 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package org.openecomp.mso.client.aai;

import java.io.IOException;
import java.util.List;

import org.openecomp.aai.domain.yang.GenericVnf;
import org.openecomp.aai.domain.yang.Pserver;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;



@Service
public class AAIValidatorImpl implements AAIValidator {


	@Autowired
	protected AAIRestClient client;
	
	public AAIRestClient getClient() {
		return client;
	}


	public void setClient(AAIRestClient client) {
		this.client = client;
	}

	@Override
	public boolean isPhysicalServerLocked(String vnfId, String transactionLoggingUuid) throws IOException {
		List<Pserver> pservers;
		boolean isLocked = false;
		pservers = client.getPhysicalServerByVnfId(vnfId, transactionLoggingUuid);
		for (Pserver pserver : pservers)
			if (pserver.isInMaint())
				isLocked = true;
		
		return isLocked;
	}

	@Override
	public boolean isVNFLocked(String vnfId, String transactionLoggingUuid) throws Exception {
		boolean isLocked = false;
		GenericVnf genericVnf = client.getVnfByName(vnfId, transactionLoggingUuid);
		if (genericVnf.isInMaint())
			isLocked = true;

		return isLocked;
	}

}