Tabnine Logo
SSLConnection.getSession
Code IndexAdd Tabnine to your IDE (free)

How to use
getSession
method
in
org.wildfly.security.ssl.SSLConnection

Best Java code snippets using org.wildfly.security.ssl.SSLConnection.getSession (Showing top 16 results out of 315)

origin: wildfly/wildfly

/**
 * Get the SSL session in force.
 *
 * @return the SSL session in force
 */
public SSLSession getSslSession() {
  return sslConnection.getSession();
}
origin: wildfly/wildfly

final SSLSession sslSession = ((SSLCallback) callback).getSslConnection().getSession();
if (sslSession != null) {
  final Principal localPrincipal = sslSession.getLocalPrincipal();
origin: wildfly/wildfly

case TLS_SERVER_ENDPOINT: {
  final X509Certificate serverCert;
  final SSLSession session = getSession();
  if (session == null) {
    return null;
origin: wildfly/wildfly

  peerCerts = X500.asX509CertificateArray(sslCallback.getSslConnection().getSession().getPeerCertificates());
} catch (SSLPeerUnverifiedException e) {
  log.trace("Peer unverified", e);
origin: org.wildfly.security/wildfly-elytron

/**
 * Get the SSL session in force.
 *
 * @return the SSL session in force
 */
public SSLSession getSslSession() {
  return sslConnection.getSession();
}
origin: org.jboss.eap/wildfly-client-all

/**
 * Get the SSL session in force.
 *
 * @return the SSL session in force
 */
public SSLSession getSslSession() {
  return sslConnection.getSession();
}
origin: org.wildfly.security/wildfly-elytron-auth-server

/**
 * Get the SSL session in force.
 *
 * @return the SSL session in force
 */
public SSLSession getSslSession() {
  return sslConnection.getSession();
}
origin: org.wildfly.security/wildfly-elytron

final SSLSession sslSession = ((SSLCallback) callback).getSslConnection().getSession();
if (sslSession != null) {
  final Principal localPrincipal = sslSession.getLocalPrincipal();
origin: org.wildfly.security/wildfly-elytron-sasl

final SSLSession sslSession = ((SSLCallback) callback).getSslConnection().getSession();
if (sslSession != null) {
  final Principal localPrincipal = sslSession.getLocalPrincipal();
origin: org.jboss.eap/wildfly-client-all

final SSLSession sslSession = ((SSLCallback) callback).getSslConnection().getSession();
if (sslSession != null) {
  final Principal localPrincipal = sslSession.getLocalPrincipal();
origin: org.wildfly.security/wildfly-elytron

case TLS_SERVER_ENDPOINT: {
  final X509Certificate serverCert;
  final SSLSession session = getSession();
  if (session == null) {
    return null;
origin: org.wildfly.security/wildfly-elytron-auth-server

case TLS_SERVER_ENDPOINT: {
  final X509Certificate serverCert;
  final SSLSession session = getSession();
  if (session == null) {
    return null;
origin: org.jboss.eap/wildfly-client-all

case TLS_SERVER_ENDPOINT: {
  final X509Certificate serverCert;
  final SSLSession session = getSession();
  if (session == null) {
    return null;
origin: org.wildfly.security/wildfly-elytron

  peerCerts = X500.asX509CertificateArray(sslCallback.getSslConnection().getSession().getPeerCertificates());
} catch (SSLPeerUnverifiedException e) {
  log.trace("Peer unverified", e);
origin: org.jboss.eap/wildfly-client-all

  peerCerts = X500.asX509CertificateArray(sslCallback.getSslConnection().getSession().getPeerCertificates());
} catch (SSLPeerUnverifiedException e) {
  log.trace("Peer unverified", e);
origin: org.wildfly.security/wildfly-elytron-auth-server

  peerCerts = X500.asX509CertificateArray(sslCallback.getSslConnection().getSession().getPeerCertificates());
} catch (SSLPeerUnverifiedException e) {
  log.trace("Peer unverified", e);
org.wildfly.security.sslSSLConnectiongetSession

Javadoc

Get the SSL session associated with this connection.

Popular methods of SSLConnection

  • forSession
    Create a SSLConnection for the given SSL socket. Since no connection information will be available i
  • handleChannelBindingCallback
    Populate the given channel binding callback with any channel binding data that might be present on t
  • getChannelBinding
    Get the channel binding of the given type from this connection. If the data is not present or the ty
  • isClientMode
    Get the client-mode flag for this connection.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • runOnUiThread (Activity)
  • getResourceAsStream (ClassLoader)
  • onCreateOptionsMenu (Activity)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top plugins for Android Studio
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