Refactor shared attributes and methods to the PEP agent super COPSPepAgent.
[packetcable.git] / packetcable-driver / src / main / java / org / pcmm / PCMMPepAgent.java
1 /**
2  @header@
3  */
4
5 package org.pcmm;
6
7 import org.umu.cops.prpep.COPSPepAgent;
8 import org.umu.cops.stack.COPSPepId;
9
10 /**
11  * This is a provisioning COPS PEP. Responsible for making connection to the PDP
12  * and maintaining it.
13  *
14  * TODO - implement me
15  */
16 public class PCMMPepAgent extends COPSPepAgent {
17
18     /**
19      * Creates a PEP agent
20      * @param    clientType         Client-type
21      * @param    pepID              PEP-ID
22      * @param    port               the server socket port to open on this host
23      */
24     public PCMMPepAgent(final short clientType, final COPSPepId pepID, final int port) {
25         super(clientType, pepID, port);
26     }
27
28 }