Tabnine Logo
JBossSessionObjectReference.getEndpoint
Code IndexAdd Tabnine to your IDE (free)

How to use
getEndpoint
method
in
org.jboss.weld.integration.ejb.JBossSessionObjectReference

Best Java code snippets using org.jboss.weld.integration.ejb.JBossSessionObjectReference.getEndpoint (Showing top 2 results out of 315)

origin: org.jboss.weld.integration/weld-jboss-int-jboss-ejb

public void remove()
{
 if (stateful)
 {
   getEndpoint().getSessionFactory().destroySession(id);
   removed = true;
 }
 else
 {
   throw new UnsupportedOperationException("Can only remove stateful beans " + this );
 }
}
origin: org.jboss.jbossas/weld-int-ejb

public void remove()
{
 if (id == null && stateful)
 {
   log.warn("Cannot remove EJB, id unknown (likely because this is a no-interface view!)");
   removed = true;
   return;
 }
 else if (stateful)
 {
   getEndpoint().getSessionFactory().destroySession(id);
   removed = true;
 }
 else
 {
   throw new UnsupportedOperationException("Can only remove stateful beans " + this );
 }
}
org.jboss.weld.integration.ejbJBossSessionObjectReferencegetEndpoint

Popular methods of JBossSessionObjectReference

  • <init>

Popular in Java

  • Running tasks concurrently on multiple threads
  • compareTo (BigDecimal)
  • findViewById (Activity)
  • onCreateOptionsMenu (Activity)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Socket (java.net)
    Provides a client-side TCP socket.
  • JTable (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now