Refactored validator implementation
[packetcable.git] / packetcable-policy-server / src / main / java / org / opendaylight / controller / packetcable / provider / validation / impl / validators / qos / TrafficProfileValidator.java
1 /*
2  * Copyright (c) 2015 CableLabs 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.controller.packetcable.provider.validation.impl.validators.qos;
10
11 import org.opendaylight.controller.packetcable.provider.validation.impl.validators.AbstractValidator;
12 import org.opendaylight.yang.gen.v1.urn.packetcable.rev151101.pcmm.qos.traffic.profile.TrafficProfile;
13
14 /**
15  * @author rvail
16  */
17 public class TrafficProfileValidator extends AbstractValidator<TrafficProfile> {
18
19     private static final String SCN = "service-class-name";
20
21     @Override
22     protected void doValidate(final TrafficProfile trafficProfile, final Extent extent) {
23        if (trafficProfile == null) {
24            getErrorMessages().add("traffic-profile must exist");
25            return;
26        }
27
28         mustExist(trafficProfile.getServiceClassName(), SCN);
29
30     }
31
32 }