1 /* 2 * @(#)file SnmpSecurityCache.java 3 * @(#)author Sun Microsystems, Inc. 4 * @(#)version 1.13 5 * @(#)date 08/02/09 6 * 7 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 8 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 9 * 10 */ 11 package com.sun.jmx.snmp.internal; 12 13 /** 14 * Cache is returned by <CODE>SnmpSecurityModel</CODE> when handling requests. The cache contants is security dependant. This interface is a marker that every cache classes must implement. 15 * <p><b>This API is a Sun Microsystems internal API and is subject 16 * to change without notice.</b></p> 17 * @since 1.5 18 */ 19 public interface SnmpSecurityCache { 20 } 21