blob: 34d232eeb80a5371040b0d64293c892b431b6b2d [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2001-2003 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25package com.sun.jmx.snmp.internal;
26
27import com.sun.jmx.snmp.SnmpStatusException;
28import com.sun.jmx.snmp.SnmpOid;
29import com.sun.jmx.snmp.SnmpPdu;
30import com.sun.jmx.snmp.SnmpUnknownAccContrModelException;
31/**
32 * Access Control sub system interface. To allow engine integration, an Access Control sub system must implement this interface.
33 * <p><b>This API is a Sun Microsystems internal API and is subject
34 * to change without notice.</b></p>
35 * @since 1.5
36 */
37public interface SnmpAccessControlSubSystem extends SnmpSubSystem {
38
39 /**
40 * Method called by the dispatcher in order to control the access at an SNMP pdu Level.
41 * <P> This call is routed by the sub system to the target model according to the SNMP protocol version number.</P>
42 * @param version The SNMP protocol version number.
43 * @param principal The request principal.
44 * @param securityLevel The request security level as defined in <CODE>SnmpEngine</CODE>.
45 * @param pduType The pdu type (get, set, ...).
46 * @param securityModel The security model ID.
47 * @param contextName The access control context name.
48 * @param pdu The pdu to check.
49 */
50 public void checkPduAccess(int version,
51 String principal,
52 int securityLevel,
53 int pduType,
54 int securityModel,
55 byte[] contextName,
56 SnmpPdu pdu) throws SnmpStatusException, SnmpUnknownAccContrModelException;
57 /**
58 * Method called by the dispatcher in order to control the access at an <CODE>SnmpOid</CODE> Level.
59 * This method is called after the <CODE>checkPduAccess</CODE> pdu based method.
60 * <P> This call is routed by the sub system to the target model according to the SNMP protocol version number.</P>
61 * @param version The SNMP protocol version number.
62 * @param principal The request principal.
63 * @param securityLevel The request security level as defined in <CODE>SnmpEngine</CODE>.
64 * @param pduType The pdu type (get, set, ...).
65 * @param securityModel The security model ID.
66 * @param contextName The access control context name.
67 * @param oid The OID to check.
68 */
69 public void checkAccess(int version,
70 String principal,
71 int securityLevel,
72 int pduType,
73 int securityModel,
74 byte[] contextName,
75 SnmpOid oid) throws SnmpStatusException, SnmpUnknownAccContrModelException;
76}