Add missing license headers to packetcable-driver utils
[packetcable.git] / packetcable-driver / src / main / java / org / pcmm / PCMMDef.java
1 /**
2  @header@
3  */
4
5 package org.pcmm;
6
7 import org.umu.cops.common.COPS_def;
8
9 public class PCMMDef extends COPS_def {
10
11     public static final short C_PCMM = (short) 0x800A;
12
13     /**
14      * Get a representative string for an COPS Client Type.
15      *
16      * @param cType
17      *            COPS Client Type
18      * @return A representative <tt>String</tt>
19      *
20      */
21     public String strClientType(short cType) {
22         switch (cType) {
23         case C_PCMM:
24             return ("C_PCMM");
25         default:
26             return super.strClientType(cType);
27         }
28     }
29
30 }