Add missing license headers to packetcable-driver gates
[packetcable.git] / packetcable-driver / src / main / java / org / pcmm / gates / ITrafficProfile.java
index 9e21675f42bf433f89489a0375ee34375eed47a0..80f6ea3391c1e4126f3b4717ff71fcdf1107ebf6 100644 (file)
@@ -1,22 +1,19 @@
-/**
- @header@
+/*
+ * Copyright (c) 2015 Cable Television Laboratories, 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.pcmm.gates;
 
 import org.pcmm.base.IPCMMBaseObject;
 
 public interface ITrafficProfile extends IPCMMBaseObject {
 
-    static final byte SNUM = 7;
-
-    /**
-     * 0x001, 0x011 and 0x111 (Authorized, Reserved, and Committed) are allowed
-     *
-     * @param en
-     */
-    void setEnvelop(byte en);
+    // Authorized
+    byte DEFAULT_ENVELOP = 0x7;
 
     byte getEnvelop();