/protocols/ss7/m3ua/api/src/main/java/org/mobicents/protocols/ss7/m3ua/parameter/Parameter.java
http://mobicents.googlecode.com/ · Java · 57 lines · 28 code · 3 blank · 26 comment · 0 complexity · 9d0c7229b6cde88921a7b422803f67a8 MD5 · raw file
- /*
- * JBoss, Home of Professional Open Source
- * Copyright 2011, Red Hat, Inc. and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
- package org.mobicents.protocols.ss7.m3ua.parameter;
- /**
- * Defines list of valid parameters.
- *
- * @author kulikov
- */
- public interface Parameter {
- public final static short INFO_String = 0x0004;
- public final static short Routing_Context = 0x0006;
- public final static short Diagnostic_Information = 0x0007;
- public final static short Heartbeat_Data = 0x0009;
- public final static short Traffic_Mode_Type = 0x000b;
- public final static short Error_Code = 0x000c;
- public final static short Status = 0x000d;
- public final static short ASP_Identifier = 0x0011;
- public final static short Affected_Point_Code = 0x0012;
- public final static short Correlation_ID = 0x0013;
- public final static short Network_Appearance = 0x0200;
- public final static short User_Cause = 0x0204;
- public final static short Congestion_Indications = 0x0205;
- public final static short Concerned_Destination = 0x0206;
- public final static short Routing_Key = 0x0207;
- public final static short Registration_Result = 0x0208;
- public final static short Deregistration_Result = 0x0209;
- public final static short Local_Routing_Key_Identifier = 0x020a;
- public final static short Destination_Point_Code = 0x020b;
- public final static short Service_Indicators = 0x020c;
- public final static short Originating_Point_Code_List = 0x020e;
- public final static short Circuit_Range = 0x020f;
- public final static short Protocol_Data = 0x0210;
- public final static short Registration_Status = 0x0212;
- public final static short Deregistration_Status = 0x0213;
- }