Updates to support new TrafficProfiles that require a user-specified Direction in...
[packetcable.git] / packetcable-driver / src / main / java / org / pcmm / PCMMConstants.java
1 /*
2  * Copyright (c) 2014, 2015 Cable Television Laboratories, Inc. 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.pcmm;
10
11 public interface PCMMConstants {
12
13         // Port used by the PCMM
14         public static final String PCMM_PORT = "pcmm.port";
15         // Pool size, determining the number of connections that could be
16         // established with CMTSs
17         public static final String PS_POOL_SIZE = "pcmm.ps.pool.size";
18         // Default keep-alive timer value (secs)
19         public static final String KA_TIMER = "pcmm.keep.alive.timer";
20         // Default accounting timer value (secs)
21         public static final String ACC_TIMER = "pcmm.accounting.timer";
22         // default ip mask
23         public static final String DEFAULT_MASK = "pcmm.default.mask";
24         // default timeout
25         public static final String DEFAULT_TIEMOUT = "pcmm.default.timeout";
26
27 }