ServiceHandler Update
[transportpce.git] / servicehandler / src / main / java / org / opendaylight / transportpce / servicehandler / CheckCoherencyHardSoft.java
1 /*
2  * Copyright © 2017 Orange, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.transportpce.servicehandler;
10
11 import org.opendaylight.yang.gen.v1.http.org.openroadm.routing.constrains.rev161014.routing.constraints.HardConstraints;
12 import org.opendaylight.yang.gen.v1.http.org.openroadm.routing.constrains.rev161014.routing.constraints.SoftConstraints;
13 import org.slf4j.Logger;
14 import org.slf4j.LoggerFactory;
15
16 /**
17  * Class to check coherency between hard and  soft constraints.
18  *
19  * @author <a href="mailto:martial.coulibaly@gfi.com">Martial Coulibaly</a> on behalf of Orange
20  *
21  */
22 public class CheckCoherencyHardSoft {
23     /** Logging. */
24     private static final Logger LOG = LoggerFactory.getLogger(CheckCoherencyHardSoft.class);
25     /** Hard Constraints. */
26     private HardConstraints hard;
27     /** Soft Constraints. */
28     private SoftConstraints soft;
29
30     public CheckCoherencyHardSoft(HardConstraints hard, SoftConstraints soft) {
31         this.hard = hard;
32         this.soft = soft;
33     }
34
35     /**
36      * function to check coherency between hard and soft constraints.
37      * @return  <code> true </code>  if coherent
38      *          <code> false </code> else
39      */
40     public boolean check() {
41         boolean result = false;
42         if (hard != null && soft != null) {
43             /**
44              * Check coherency with hard/soft constraints
45              * hard/soft include/exclude coherency
46              *
47              */
48         } else {
49             LOG.info("HardConstraints or/and  SoftConstraints is null !");
50             result = true;
51         }
52         return result;
53     }
54
55 }