X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2FForwardingMode.java;h=ef68e1182722577ba469e53637cbf98865e86dac;hb=refs%2Fchanges%2F34%2F4834%2F2;hp=1b19f19778ddba6c21ae8437d5e06be44b7d3898;hpb=97fd2a787cccc23c9224d5aa3d2db1c0ee344b67;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/ForwardingMode.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/ForwardingMode.java index 1b19f19778..ef68e11827 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/ForwardingMode.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/ForwardingMode.java @@ -1,5 +1,14 @@ +/* + * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ package org.opendaylight.controller.sal.core; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; @@ -7,6 +16,7 @@ import javax.xml.bind.annotation.XmlRootElement; * The class represents the forwarding mode property of a node. */ @XmlRootElement +@XmlAccessorType(XmlAccessType.NONE) @SuppressWarnings("serial") public class ForwardingMode extends Property { @XmlElement(name="value") @@ -76,4 +86,4 @@ public class ForwardingMode extends Property { public String getStringValue() { return (modeValue == ForwardingMode.PROACTIVE_FORWARDING) ? "Proactive" : "Reactive"; } -} \ No newline at end of file +}