SSLProtocol.java 326 B

123456789101112131415161718
  1. package de.tudarmstadt.informatik.hostage.protocol;
  2. import javax.net.ssl.SSLContext;
  3. /**
  4. * Interface for secure protocols.
  5. *
  6. * @author Wulf Pfeiffer
  7. */
  8. public interface SSLProtocol extends Protocol {
  9. /**
  10. * Returns the SSL Context to be used.
  11. *
  12. * @return the used SSLContext
  13. */
  14. SSLContext getSSLContext();
  15. }