Uses of Class
net.messagevortex.transport.SecurityContext
Packages that use SecurityContext
Package
Description
This package contains vital classes for transport layer.
Contains all the classes required for the imap implementation.
-
Uses of SecurityContext in net.messagevortex.transport
Methods in net.messagevortex.transport that return SecurityContextModifier and TypeMethodDescriptionAbstractConnection.getSecurityContext()Gets the security context used with the socket channel.ListeningSocketChannel.getSecurityContext()Gets the security context of the channel.final SecurityContextAbstractConnection.setSecurityContext(SecurityContext context) Sets the security context to be used with the socket channel.ListeningSocketChannel.setSecurityContext(SecurityContext context) Sets the security context of the socket channel.Methods in net.messagevortex.transport with parameters of type SecurityContextModifier and TypeMethodDescriptionfinal SecurityContextAbstractConnection.setSecurityContext(SecurityContext context) Sets the security context to be used with the socket channel.ListeningSocketChannel.setSecurityContext(SecurityContext context) Sets the security context of the socket channel.Constructors in net.messagevortex.transport with parameters of type SecurityContextModifierConstructorDescriptionAbstractConnection(InetSocketAddress remoteAddress, SecurityContext context) AbstractConnection(SocketChannel sock, SecurityContext context) Create a connection with the given context.AbstractConnection(SocketChannel sock, SecurityContext context, boolean isClient) Create a connection with the given context.ClientConnection(InetSocketAddress socketAddress, SecurityContext context) ClientConnection(SocketChannel channel, SecurityContext context) ServerConnection(SocketChannel channel, SecurityContext context) Creates a server connection based on a server channel. -
Uses of SecurityContext in net.messagevortex.transport.imap
Constructors in net.messagevortex.transport.imap with parameters of type SecurityContextModifierConstructorDescriptionImapClient(InetSocketAddress addr, SecurityContext secContext) ImapPassthruServer(InetSocketAddress listeningAddress, SecurityContext context, Credentials listeningCredentials, InetSocketAddress forwardingServer, Credentials forwardingCredentials) Create an IMAP passthru proxy server.ImapServer(InetSocketAddress addr, SecurityContext enc) Creates an IMAP server listening on the specified socket address.ImapServer(SecurityContext secContext) Creates an IMAP server listening the default port on all interfaces of the server. -
Uses of SecurityContext in net.messagevortex.transport.smtp
Constructors in net.messagevortex.transport.smtp with parameters of type SecurityContextModifierConstructorDescriptionSmtpConnection(InetSocketAddress socketAddress, SecurityContext context, Credentials creds) SmtpConnection(SocketChannel channel, SecurityContext secContext, Credentials creds) SmtpReceiver(InetSocketAddress address, SecurityContext secContext, TransportReceiver lreceiver) creates a local SMTP server.SmtpSender(String senderAddress, String server, int port, Credentials creds, SecurityContext context) Creates an SMTP sending daemon transfering messages to a smart relay.