Source code: com/opencloud/slee/services/sip/proxy/ProxySbbUsage.java
1 /*
2 * Created on Jan 26, 2005
3 *
4 * The Open SLEE Project
5 *
6 * A SLEE for the People
7 *
8 * The source code contained in this file is in in the public domain.
9 * It can be used in any project or product without prior permission,
10 * license or royalty payments. There is no claim of correctness and
11 * NO WARRANTY OF ANY KIND provided with this code.
12 */
13 package com.opencloud.slee.services.sip.proxy;
14
15 /**
16 *
17 * TODO Class Description
18 *
19 * @author F.Moggia
20 */
21 public interface ProxySbbUsage {
22 public abstract void incrementNumberOfInvite(long value);
23 public abstract void incrementNumberOfAck(long value);
24 public abstract void incrementNumberOfRegister(long value);
25 public abstract void incrementNumberOfBye(long value);
26
27 }