[]Struct jni_android_sys::javax::net::ssl::SSLServerSocket

#[repr(transparent)]
pub struct SSLServerSocket(_);

public class SSLServerSocket

Required feature: "javax-net-ssl-SSLServerSocket"

Methods

impl SSLServerSocket

pub fn getEnabledCipherSuites<'env>(
    &'env self
) -> Result<Option<Local<'env, ObjectArray<String, Throwable>>>, Local<'env, Throwable>>
[src]

getEnabledCipherSuites

Required features: "java-lang-String"

pub fn setEnabledCipherSuites<'env>(
    &'env self,
    arg0: impl Into<Option<&'env ObjectArray<String, Throwable>>>
) -> Result<(), Local<'env, Throwable>>
[src]

setEnabledCipherSuites

Required features: "java-lang-String"

pub fn getSupportedCipherSuites<'env>(
    &'env self
) -> Result<Option<Local<'env, ObjectArray<String, Throwable>>>, Local<'env, Throwable>>
[src]

getSupportedCipherSuites

Required features: "java-lang-String"

pub fn getSupportedProtocols<'env>(
    &'env self
) -> Result<Option<Local<'env, ObjectArray<String, Throwable>>>, Local<'env, Throwable>>
[src]

getSupportedProtocols

Required features: "java-lang-String"

pub fn getEnabledProtocols<'env>(
    &'env self
) -> Result<Option<Local<'env, ObjectArray<String, Throwable>>>, Local<'env, Throwable>>
[src]

getEnabledProtocols

Required features: "java-lang-String"

pub fn setEnabledProtocols<'env>(
    &'env self,
    arg0: impl Into<Option<&'env ObjectArray<String, Throwable>>>
) -> Result<(), Local<'env, Throwable>>
[src]

setEnabledProtocols

Required features: "java-lang-String"

pub fn setNeedClientAuth<'env>(
    &'env self,
    arg0: bool
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getNeedClientAuth<'env>(
    &'env self
) -> Result<bool, Local<'env, Throwable>>
[src]

pub fn setWantClientAuth<'env>(
    &'env self,
    arg0: bool
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getWantClientAuth<'env>(
    &'env self
) -> Result<bool, Local<'env, Throwable>>
[src]

pub fn setUseClientMode<'env>(
    &'env self,
    arg0: bool
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getUseClientMode<'env>(
    &'env self
) -> Result<bool, Local<'env, Throwable>>
[src]

pub fn setEnableSessionCreation<'env>(
    &'env self,
    arg0: bool
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getEnableSessionCreation<'env>(
    &'env self
) -> Result<bool, Local<'env, Throwable>>
[src]

pub fn getSSLParameters<'env>(
    &'env self
) -> Result<Option<Local<'env, SSLParameters>>, Local<'env, Throwable>>
[src]

getSSLParameters

Required features: "javax-net-ssl-SSLParameters"

pub fn setSSLParameters<'env>(
    &'env self,
    arg0: impl Into<Option<&'env SSLParameters>>
) -> Result<(), Local<'env, Throwable>>
[src]

setSSLParameters

Required features: "javax-net-ssl-SSLParameters"

pub fn toString<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

toString

Required features: "java-lang-String"

Methods from Deref<Target = ServerSocket>

pub fn bind_SocketAddress<'env>(
    &'env self,
    arg0: impl Into<Option<&'env SocketAddress>>
) -> Result<(), Local<'env, Throwable>>
[src]

bind

Required features: "java-net-SocketAddress"

pub fn bind_SocketAddress_int<'env>(
    &'env self,
    arg0: impl Into<Option<&'env SocketAddress>>,
    arg1: i32
) -> Result<(), Local<'env, Throwable>>
[src]

bind

Required features: "java-net-SocketAddress"

pub fn getInetAddress<'env>(
    &'env self
) -> Result<Option<Local<'env, InetAddress>>, Local<'env, Throwable>>
[src]

getInetAddress

Required features: "java-net-InetAddress"

pub fn getLocalPort<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn getLocalSocketAddress<'env>(
    &'env self
) -> Result<Option<Local<'env, SocketAddress>>, Local<'env, Throwable>>
[src]

getLocalSocketAddress

Required features: "java-net-SocketAddress"

pub fn accept<'env>(
    &'env self
) -> Result<Option<Local<'env, Socket>>, Local<'env, Throwable>>
[src]

accept

Required features: "java-net-Socket"

pub fn close<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn getChannel<'env>(
    &'env self
) -> Result<Option<Local<'env, ServerSocketChannel>>, Local<'env, Throwable>>
[src]

getChannel

Required features: "java-nio-channels-ServerSocketChannel"

pub fn isBound<'env>(&'env self) -> Result<bool, Local<'env, Throwable>>[src]

pub fn isClosed<'env>(&'env self) -> Result<bool, Local<'env, Throwable>>[src]

pub fn setSoTimeout<'env>(
    &'env self,
    arg0: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getSoTimeout<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn setReuseAddress<'env>(
    &'env self,
    arg0: bool
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getReuseAddress<'env>(&'env self) -> Result<bool, Local<'env, Throwable>>[src]

pub fn toString<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

toString

Required features: "java-lang-String"

pub fn setReceiveBufferSize<'env>(
    &'env self,
    arg0: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getReceiveBufferSize<'env>(
    &'env self
) -> Result<i32, Local<'env, Throwable>>
[src]

pub fn setPerformancePreferences<'env>(
    &'env self,
    arg0: i32,
    arg1: i32,
    arg2: i32
) -> Result<(), Local<'env, Throwable>>
[src]

Trait Implementations

impl AsJValue for SSLServerSocket

impl AsValidJObjectAndEnv for SSLServerSocket

impl Deref for SSLServerSocket

type Target = ServerSocket

The resulting type after dereferencing.

impl JniType for SSLServerSocket

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.