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

How to use
org.jboss.ejb3.annotation.LocalBinding
constructor

Best Java code snippets using org.jboss.ejb3.annotation.LocalBinding.<init> (Showing top 20 results out of 315)

origin: com.glon/sandra-service

/**
 *
 * @author sletellier
 */
@Local
@LocalBinding(jndiBinding="ServiceScheduleImpl/local")
public interface ServiceScheduleLocal extends ServiceSchedule {
}

origin: com.glon/sandra-service

/**
 *
 * @author sletellier
 */
@Local
@LocalBinding(jndiBinding="ServiceSuiviImpl/local")
public interface ServiceSuiviLocal extends ServiceSuivi {
}

origin: glon/sandra-service

/**
 *
 * @author sletellier
 */
@Local
@LocalBinding(jndiBinding="ServiceScheduleImpl/local")
public interface ServiceScheduleLocal extends ServiceSchedule {
}

origin: glon/sandra-service

/**
 *
 * @author sletellier
 */
@Local
@LocalBinding(jndiBinding="ServiceSuiviImpl/local")
public interface ServiceSuiviLocal extends ServiceSuivi {
}

origin: glon/sandra-service

/**
 * @author sletellier
 */
@Local
@LocalBinding(jndiBinding="ServiceSynchNumberImpl/local")
public interface ServiceSynchNumberLocal extends ServiceSynchNumber {
}

origin: com.glon/sandra-service

/**
 * @author sletellier
 */
@Local
@LocalBinding(jndiBinding="ServiceSynchNumberImpl/local")
public interface ServiceSynchNumberLocal extends ServiceSynchNumber {
}

origin: com.glon/sandra-service

@Local
@LocalBinding(jndiBinding="InjectorIBUImpl/local")
public interface InjectorIBULocal extends InjectorIBU {
}

origin: com.glon/sandra-service

@Local
@LocalBinding(jndiBinding="ServiceWebImpl/local")
public interface ServiceWebLocal extends ServiceWeb {
}

origin: com.glon/sandra-service

@Local
@LocalBinding(jndiBinding="ServiceTourImpl/local")
public interface ServiceTourLocal extends ServiceTour {
}

origin: glon/sandra-service

@Local
@LocalBinding(jndiBinding="InjectorIBUImpl/local")
public interface InjectorIBULocal extends InjectorIBU {
}

origin: glon/sandra-service

@Local
@LocalBinding(jndiBinding="ServiceNotifierImpl/local")
public interface ServiceNotifierLocal extends ServiceNotifier {
}

origin: com.glon/sandra-service

@Local
@LocalBinding(jndiBinding="ServiceNotifierImpl/local")
public interface ServiceNotifierLocal extends ServiceNotifier {
}

origin: glon/sandra-service

@Local
@LocalBinding(jndiBinding="ServiceTourImpl/local")
public interface ServiceTourLocal extends ServiceTour {
}

origin: glon/sandra-service

@Local
@LocalBinding(jndiBinding="ServiceWebImpl/local")
public interface ServiceWebLocal extends ServiceWeb {
}

origin: be.fedict.eid-trust-service/eid-trust-service-model

/**
 * Administrator Authorization Service Bean implementation.
 * 
 * @author wvdhaute
 */
@Stateless
@Local(AuthenticationService.class)
@LocalBinding(jndiBinding = TrustServiceConstants.TRUST_JNDI_CONTEXT
    + "AuthenticationServiceBean")
public class AuthenticationServiceBean implements AuthenticationService {

  private static final Log LOG = LogFactory
      .getLog(AuthenticationServiceBean.class);

  public void validateCertificateChain(List<X509Certificate> certificateChain)
      throws SecurityException {

    LOG.debug("validate");
    // do nothing
  }
}

origin: be.fedict.eid-idp/eid-idp-admin-webapp-control

/**
 * eID Applet Service Authentication Service implementation for the admin
 * portal.
 * 
 * @author Frank Cornelis
 */
@Stateless
@Local(AuthenticationService.class)
@LocalBinding(jndiBinding = AdminConstants.ADMIN_JNDI_CONTEXT
    + "AuthenticationServiceBean")
public class AdminAuthenticationServiceBean implements AuthenticationService {

  private static final Log LOG = LogFactory
      .getLog(AdminAuthenticationServiceBean.class);

  public void validateCertificateChain(List<X509Certificate> certificateChain)
      throws SecurityException {
    LOG.debug("validate certificate: "
        + certificateChain.get(0).getSubjectX500Principal());
    // nothing to do here as we accept all certificates
  }
}

origin: be.fedict.eid-dss/eid-dss-admin-portal-control

@Stateless
@Local(AuthenticationService.class)
@LocalBinding(jndiBinding = AdminConstants.ADMIN_JNDI_CONTEXT
    + "AuthenticationServiceBean")
public class AuthenticationServiceBean implements AuthenticationService {

  private static final Log LOG = LogFactory
      .getLog(AuthenticationServiceBean.class);

  @Override
  public void validateCertificateChain(List<X509Certificate> certificateChain)
      throws ExpiredCertificateSecurityException,
      RevokedCertificateSecurityException,
      TrustCertificateSecurityException, CertificateSecurityException,
      SecurityException {
    /*
     * Admin trust is based on the public key only.
     */
    LOG.debug("validateCertificateChain");
  }
}

origin: be.fedict.eid-idp/eid-idp-model

@Stateless
@Local(TransportService.class)
@LocalBinding(jndiBinding = Constants.IDP_JNDI_CONTEXT + "TransportServiceBean")
public class TransportServiceBean implements TransportService {

  @EJB
  private Configuration configuration;

  @Override
  public StrictTransportSecurityConfig getStrictTransportSecurityConfig() {
    Boolean hsts = this.configuration.getValue(ConfigProperty.HSTS,
        Boolean.class);
    if (null == hsts) {
      return null;
    }
    if (false == hsts) {
      return null;
    }
    return new StrictTransportSecurityConfig(365 * 24 * 60 * 60, true);
  }
}

origin: be.fedict.eid-dss/eid-dss-model

@Stateless
@Local(TransportService.class)
@LocalBinding(jndiBinding = Constants.DSS_JNDI_CONTEXT + "TransportServiceBean")
public class TransportServiceBean implements TransportService {

  private static final Log LOG = LogFactory
      .getLog(TransportServiceBean.class);

  @EJB
  private Configuration configuration;

  public StrictTransportSecurityConfig getStrictTransportSecurityConfig() {
    Boolean hsts = this.configuration.getValue(
        ConfigProperty.SECURITY_HSTS, Boolean.class);
    LOG.debug("HSTS: " + hsts);
    if (null == hsts) {
      return null;
    }
    if (false == hsts) {
      return null;
    }
    return new StrictTransportSecurityConfig(365 * 24 * 60 * 60, true);
  }
}

origin: be.fedict.eid-trust-service/eid-trust-service-admin-portal-model

@Stateless
@Name(AdminConstants.ADMIN_SEAM_PREFIX + "authenticator")
@LocalBinding(jndiBinding = AdminConstants.ADMIN_JNDI_CONTEXT
    + "AuthenticatorBean")
public class AuthenticatorBean implements Authenticator {

  private static final org.apache.commons.logging.Log LOG = LogFactory
      .getLog(AuthenticatorBean.class);

  @In
  private Identity identity;

  @In(value = "eid.certs.authn", scope = ScopeType.SESSION)
  private X509Certificate authenticatedCertificate;

  @EJB
  private AdminManager adminManager;

  public boolean authenticate() {

    LOG.debug("authenticate: ");
    if (this.adminManager.isAdmin(this.authenticatedCertificate)) {
      this.identity.addRole("admin");
    }
    return true;
  }
}

org.jboss.ejb3.annotationLocalBinding<init>

Popular methods of LocalBinding

  • jndiBinding

Popular in Java

  • Making http requests using okhttp
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getExternalFilesDir (Context)
  • runOnUiThread (Activity)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Top PhpStorm 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