com.oracle.svm.core.annotate.Alias Java Examples

The following examples show how to use com.oracle.svm.core.annotate.Alias. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: NettySubstitutions.java    From quarkus with Apache License 2.0 5 votes vote down vote up
@Alias
Target_io_netty_handler_ssl_JdkSslClientContext(Provider sslContextProvider, X509Certificate[] trustCertCollection,
        TrustManagerFactory trustManagerFactory, X509Certificate[] keyCertChain, PrivateKey key,
        String keyPassword, KeyManagerFactory keyManagerFactory, Iterable<String> ciphers,
        CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, String[] protocols,
        long sessionCacheSize, long sessionTimeout, String keyStoreType)
        throws SSLException {

}
 
Example #2
Source File: NettySubstitutions.java    From quarkus with Apache License 2.0 5 votes vote down vote up
@Alias
Target_io_netty_handler_ssl_JdkSslServerContext(Provider provider,
        X509Certificate[] trustCertCollection, TrustManagerFactory trustManagerFactory,
        X509Certificate[] keyCertChain, PrivateKey key, String keyPassword,
        KeyManagerFactory keyManagerFactory, Iterable<String> ciphers, CipherSuiteFilter cipherFilter,
        ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout,
        ClientAuth clientAuth, String[] protocols, boolean startTls,
        String keyStore)
        throws SSLException {
}
 
Example #3
Source File: MongoClientSubstitutions.java    From quarkus with Apache License 2.0 5 votes vote down vote up
@Alias
private SSLContext getSslContext() {
    try {
        return (sslSettings.getContext() == null) ? SSLContext.getDefault() : sslSettings.getContext();
    } catch (NoSuchAlgorithmException e) {
        throw new MongoClientException("Unable to create default SSLContext", e);
    }
}
 
Example #4
Source File: ConstructorReplacement.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public Class<?> getDeclaringClass() {
    return null;
}
 
Example #5
Source File: GrpcSubstitutions.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
int getPriority(T provider);
 
Example #6
Source File: GrpcNettySubtitutions.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
private static Provider findJdkProvider() {
    return null;
}
 
Example #7
Source File: GrpcNettySubtitutions.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public static SslContextBuilder configure(SslContextBuilder builder, Provider jdkProvider) {
    return null;
}
 
Example #8
Source File: Target_org_wildfly_security_password_interfaces_BCryptPassword.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
RawBCryptPassword(final String algorithm, final byte[] hash, final byte[] salt, final int iterationCount) {
}
 
Example #9
Source File: Target_org_wildfly_security_password_interfaces_BSDUnixDESCryptPassword.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
RawBSDUnixDESCryptPassword(final String algorithm, final int iterationCount, final int salt, final byte[] hash) {
}
 
Example #10
Source File: Target_org_wildfly_security_password_interfaces_RawClearPassword.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
Target_org_wildfly_security_password_interfaces_RawClearPassword(final String algorithm, final char[] password) {
}
 
Example #11
Source File: Target_org_wildfly_security_password_interfaces_RawMaskedPassword.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
Target_org_wildfly_security_password_interfaces_RawMaskedPassword(final String algorithm, final char[] initialKeyMaterial,
        final int iterationCount, final byte[] salt, final byte[] maskedPasswordBytes, final byte[] initializationVector) {
}
 
Example #12
Source File: FixJMXClasses.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public static Properties parseProperties(final XMLExtendedStreamReader reader) {
    return null;
}
 
Example #13
Source File: SubstituteReflectionBasedClasses.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public static <T> Class<T> loadClass(String classname, ClassLoader cl) {
    return null;
}
 
Example #14
Source File: SubstituteReflectionBasedClasses.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public static <T> T getInstance(Class<T> clazz) {
    return null;
}
 
Example #15
Source File: NettySubstitutions.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public AbstractBootstrapConfig config() {
    return null;
}
 
Example #16
Source File: ConstructorReplacement.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public <T extends Annotation> T getAnnotation(Class<T> annotationClass) {
    return null;
}
 
Example #17
Source File: ConstructorReplacement.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public Annotation[] getDeclaredAnnotations() {
    return null;
}
 
Example #18
Source File: DiagnosticPrinter.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
static native Pthread.pthread_t getPthreadIdentifier(Thread thread);
 
Example #19
Source File: DiagnosticPrinter.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
static native boolean hasThreadIdentifier(Thread thread);
 
Example #20
Source File: CidrAddressSubstitutions.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
private Target_org_wildfly_common_net_CidrAddress(InetAddress networkAddress, int netmaskBits) {
}
 
Example #21
Source File: ParameterReplacement.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public Type getParameterizedType() {
    return null;
}
 
Example #22
Source File: ParameterReplacement.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public <T extends Annotation> T getAnnotation(Class<T> annotationClass) {
    return null;
}
 
Example #23
Source File: ParameterReplacement.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public Annotation[] getDeclaredAnnotations() {
    return null;
}
 
Example #24
Source File: Target_javax_net_ssl_SSLContext.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
protected Target_javax_net_ssl_SSLContext(SSLContextSpi contextSpi, Provider provider, String protocol) {
}
 
Example #25
Source File: MethodReplacement.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public Type getGenericReturnType() {
    return null;
}
 
Example #26
Source File: MethodReplacement.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public <T extends Annotation> T getAnnotation(Class<T> annotationClass) {
    return null;
}
 
Example #27
Source File: MethodReplacement.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public Annotation[] getDeclaredAnnotations() {
    return null;
}
 
Example #28
Source File: Substitute_RestClient.java    From quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
NodeTuple(final T nodes, final AuthCache authCache) {
}
 
Example #29
Source File: BasicAuthCacheAlias.java    From camel-quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
public BasicAuthCacheAlias() {
}
 
Example #30
Source File: BasicAuthCacheAlias.java    From camel-quarkus with Apache License 2.0 4 votes vote down vote up
@Alias
protected HttpHost getKey(final HttpHost host) {
    return null;
}