00001 /* 00002 * $Id: Application.java 2 2006-11-14 22:37:20Z vingarzan $ 00003 * 00004 * Copyright (C) 2004-2006 FhG Fokus 00005 * 00006 * This file is part of Open IMS Core - an open source IMS CSCFs & HSS 00007 * implementation 00008 * 00009 * Open IMS Core is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * For a license to use the Open IMS Core software under conditions 00015 * other than those described here, or to purchase support for this 00016 * software, please contact Fraunhofer FOKUS by e-mail at the following 00017 * addresses: 00018 * info@open-ims.org 00019 * 00020 * Open IMS Core is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * You should have received a copy of the GNU General Public License 00026 * along with this program; if not, write to the Free Software 00027 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00028 * 00029 */ 00030 00031 package de.fhg.fokus.diameter.DiameterPeer.peer; 00032 00039 public class Application { 00040 00042 public int id; 00043 00045 public int vendor; 00046 00048 public int type; 00049 00051 public static final int Auth = 0; 00052 00054 public static final int Acct = 1; 00055 00056 00064 public Application(int id, int vendor, int type) { 00065 super(); 00066 this.id = id; 00067 this.vendor = vendor; 00068 this.type = type; 00069 } 00070 00072 public static final int Relay=0xffffffff; 00073 }
1.5.2