001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.ejb3.metafacades; 006 007import java.util.Collection; 008import org.andromda.metafacades.uml.Service; 009 010/** 011 * TODO: Model Documentation for org.andromda.cartridges.ejb3.metafacades.EJB3InterceptorFacade 012 * 013 * Metafacade interface to be used by AndroMDA cartridges. 014 */ 015public interface EJB3InterceptorFacade 016 extends Service 017{ 018 /** 019 * Indicates the metafacade type (used for metafacade mappings). 020 * 021 * @return boolean always <code>true</code> 022 */ 023 public boolean isEJB3InterceptorFacadeMetaType(); 024 025 /** 026 * Returns the fully qualified interceptor class name. 027 * @return String 028 */ 029 public String getFullyQualifiedInterceptorName(); 030 031 /** 032 * Returns the interceptor class name. 033 * @return String 034 */ 035 public String getInterceptorName(); 036 037 /** 038 * Returns the Collection of target elements from this interceptor class where the target class 039 * has a stereotype of Interceptor. 040 * @return Collection 041 */ 042 public Collection getInterceptorReferences(); 043 044 /** 045 * Returns true if this interceptor is a default interceptor. 046 * @return boolean 047 */ 048 public boolean isDefaultInterceptor(); 049}