congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Remote.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
javax.ejb.Remote
constructor

Best Java code snippets using javax.ejb.Remote.<init> (Showing top 20 results out of 756)

origin: javaee-samples/javaee7-samples

@Remote
public interface BeanRemote {
  String method();
}

origin: kiegroup/jbpm

@Remote
public interface RuntimeDataServiceEJBRemote extends RuntimeDataService, DeploymentEventListener {

  /**
   * This method is not supported in EJB remote api as <code>TaskSummaryQueryBuilder<code> is not remote capable object
   */    
  @Override    
  TaskSummaryQueryBuilder taskSummaryQuery(String userId);
}

origin: kiegroup/jbpm

@Remote
public interface ProcessServiceEJBRemote extends ProcessService {

}

origin: kiegroup/jbpm

@Remote
public interface ProcessInstanceMigrationServiceEJBRemote extends ProcessInstanceMigrationService {

}

origin: kiegroup/jbpm

@Remote
public interface UserTaskServiceEJBRemote extends UserTaskService {

}

origin: kiegroup/jbpm

@Remote
public interface QueryServiceEJBRemote extends QueryService {

}

origin: kiegroup/jbpm

@Remote
public interface DefinitionServiceEJBRemote extends DefinitionService, DeploymentEventListener {

}

origin: kiegroup/jbpm

@Remote
public interface DeploymentServiceEJBRemote  {
origin: stagemonitor/stagemonitor

@Remote(RemoteInterface.class)
public class RemoteInterfaceImpl implements RemoteInterface {
  @Override
  public void foo() {
  }
  @Override
  public String toString() {
    return super.toString();
  }
}
origin: stagemonitor/stagemonitor

@Remote
private interface RemoteInterfaceWithRemoteAnnotation extends RemoteInterface {
  void bar();
}
origin: jersey/jersey

/**
 * Local stateless session bean implementing a remote interface.
 * Part of CDI extension lookup issue reproducer.
 *
 * @author Jakub Podlesak (jakub.podlesak at oracle.com)
 */
@Stateless
@LocalBean
@Remote(MyRemoteInterface.class)
public class LocalBeanWithRemoteInterface {

  /**
   * Simple getter to be invoked from a CDI backed JAX-RS resource.
   *
   * @return Josh string literal.
   */
  public String getName() {
    return "Josh";
  }
}

origin: camunda/camunda-bpm-platform

/**
 * A SLSB with a remote business interface 
 * 
 * @author Daniel Meyer
 *
 */
@Stateless
@Remote(BusinessInterface.class)
public class RemoteSLSBean implements BusinessInterface {

 public boolean doBusiness() {
  return true;
 }

}

origin: camunda/camunda-bpm-platform

@Stateless
@Remote(InvocationCounterService.class)
@Local(InvocationCounterServiceLocal.class)
public class InvocationCounterServiceBean implements InvocationCounterService, InvocationCounterServiceLocal {
 
 @Inject
 private InvocationCounter invocationCounter;

 public int getNumOfInvocations() {    
  return invocationCounter.incrementAndGet();
 }

}

origin: camunda/camunda-bpm-platform

/**
 * A SingletonBean with a remote business interface 
 * 
 * @author Daniel Meyer
 *
 */
@Singleton
@Remote(BusinessInterface.class)
public class RemoteSingletonBean implements BusinessInterface {

 public boolean doBusiness() {
  return true;
 }

}

origin: camunda/camunda-bpm-platform

/**
 * A SFSB with a remote business interface 
 * 
 * @author Daniel Meyer
 *
 */
@Stateful
@Remote(BusinessInterface.class)
public class RemoteSFSBean implements BusinessInterface {

 public boolean doBusiness() {
  return true;
 }

}

origin: org.apache.openejb/openejb-itests-beans

@Remote
public interface TimerSync {
  boolean waitFor(String name);

  void countDown(String name);
}

origin: org.jbpm/jbpm-services-ejb-api

@Remote
public interface RuntimeDataServiceEJBRemote extends RuntimeDataService, DeploymentEventListener {

  /**
   * This method is not supported in EJB remote api as <code>TaskSummaryQueryBuilder<code> is not remote capable object
   */    
  @Override    
  TaskSummaryQueryBuilder taskSummaryQuery(String userId);
}

origin: org.apache.geronimo.ext.openejb/openejb-itests-beans

/**
 * 
 *
 * @version $Rev: 607077 $ $Date: 2007-12-27 09:55:23 -0500 (Thu, 27 Dec 2007) $
 */

@Remote
public interface BasicStatefulInterceptedRemote {
  
  public String reverse(String str);
  
  public String concat(String str1, String str2);
  
  public Map<String, Object> getContextData();

}

origin: org.ow2.easybeans.osgi/easybeans-osgi-itests-applications-osgi

/**
 * Remote interface for the tests.
 * @author Florent Benoit
 */
@Remote
public interface IRemoteTester extends ITester {

}

origin: org.apache.geronimo.samples/bank-ejb

@Remote
public interface BankManagerFacadeRemote {
  public java.util.List<Account> getAccountInformation(String customerId);

  public java.util.List<ExchangeRate> getExchangeRates();

  public Customer getCustomer(String customerCode);

  public Double getAccountBalance(String accountNo);
}

javax.ejbRemote<init>

Popular methods of Remote

  • value

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSupportFragmentManager (FragmentActivity)
  • setRequestProperty (URLConnection)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Join (org.hibernate.mapping)
  • From CI to AI: The AI layer in your organization
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