a229cfb9ba193d82b084ffd1e08306d0c84bef0e
[unimgr.git] / impl / src / main / java / org / opendaylight / unimgr / mef / nrp / impl / DefaultValidator.java
1 /*
2  * Copyright (c) 2017 Cisco Systems 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.unimgr.mef.nrp.impl;
10
11 import org.opendaylight.unimgr.mef.nrp.api.RequestValidator;
12 import org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.tapi.connectivity.rev171113.CreateConnectivityServiceInput;
13
14 /**
15  * @author bartosz.michalik@amartus.com
16  */
17 public class DefaultValidator implements RequestValidator {
18     @Override
19     public ValidationResult checkValid(CreateConnectivityServiceInput input) {
20         return new ValidationResult();
21     }
22 }