package com.maxifier.guice.mbean; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Created by: Aleksey Didik * Date: 5/26/11 * Time: 8:43 PM * <p/> * Copyright (c) 1999-2011 Maxifier Ltd. All Rights Reserved. * Code proprietary and confidential. * Use is subject to license terms. * * @author Aleksey Didik */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface MBeanMethod { }