1 /* 2 (C) Copyright IBM Corp. 2007, 2009 3 4 THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE 5 ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE 6 CONSTITUTES RECIPIENTS ACCEPTANCE OF THE AGREEMENT. 7 8 You can obtain a current copy of the Eclipse Public License from 9 http://www.opensource.org/licenses/eclipse-1.0.php 10 11 @author : Endre Bak, IBM, ebak@de.ibm.com 12 * 13 * Change History 14 * Flag Date Prog Description 15 *------------------------------------------------------------------------------- 16 * 1804402 2007-09-28 ebak IPv6 ready SLP 17 * 2003590 2008-06-30 blaschke-oss Change licensing from CPL to EPL 18 * 2524131 2009-01-21 raman_arora Upgrade client to JDK 1.5 (Phase 1) 19 */ 20 21 package org.metricshub.wbem.sblim.slp.internal.msg; 22 23 /*- 24 * ╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲ 25 * WBEM Java Client 26 * ჻჻჻჻჻჻ 27 * Copyright 2023 - 2025 MetricsHub 28 * ჻჻჻჻჻჻ 29 * Licensed under the Apache License, Version 2.0 (the "License"); 30 * you may not use this file except in compliance with the License. 31 * You may obtain a copy of the License at 32 * 33 * http://www.apache.org/licenses/LICENSE-2.0 34 * 35 * Unless required by applicable law or agreed to in writing, software 36 * distributed under the License is distributed on an "AS IS" BASIS, 37 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 38 * See the License for the specific language governing permissions and 39 * limitations under the License. 40 * ╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱ 41 */ 42 43 /** 44 * FunctionIDs 45 */ 46 public interface FunctionIDs { 47 /** 48 * SRV_RQST 49 */ 50 public static final int SRV_RQST = 1; 51 52 /** 53 * SRV_RPLY 54 */ 55 public static final int SRV_RPLY = 2; 56 57 /** 58 * SRV_REG 59 */ 60 public static final int SRV_REG = 3; 61 62 /** 63 * SRV_DEREG 64 */ 65 public static final int SRV_DEREG = 4; 66 67 /** 68 * SRV_ACK 69 */ 70 public static final int SRV_ACK = 5; 71 72 /** 73 * ATTR_RQST 74 */ 75 public static final int ATTR_RQST = 6; 76 77 /** 78 * ATTR_RPLY 79 */ 80 public static final int ATTR_RPLY = 7; 81 82 /** 83 * DA_ADVERT 84 */ 85 public static final int DA_ADVERT = 8; 86 87 /** 88 * SRV_TYPE_RQST 89 */ 90 public static final int SRV_TYPE_RQST = 9; 91 92 /** 93 * SRV_TYPE_RPLY 94 */ 95 public static final int SRV_TYPE_RPLY = 10; 96 97 /** 98 * SA_ADVERT 99 */ 100 public static final int SA_ADVERT = 11; 101 102 /** 103 * FIRST_ID 104 */ 105 public static final int FIRST_ID = SRV_RQST; 106 107 /** 108 * LAST_ID 109 */ 110 public static final int LAST_ID = SA_ADVERT; 111 }