Interface SslSessionCache

All Known Implementing Classes:
SslSessionCache.Default

public interface SslSessionCache
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static class 
     
    static class 
     
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final org.slf4j.Logger
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addSession(byte[] sessionId, byte[] session)
     
    byte[]
    getSession(byte[] sessionId)
     
    void
    removeSession(byte[] sessionId)
     
    void
    resize(int maxSize)
     
  • Field Details

    • log

      static final org.slf4j.Logger log
  • Method Details

    • resize

      void resize(int maxSize)
    • addSession

      void addSession(byte[] sessionId, byte[] session)
    • getSession

      byte[] getSession(byte[] sessionId)
    • removeSession

      void removeSession(byte[] sessionId)