All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgroups.protocols.GOOGLE_PING Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote Jakarta Enterprise Beans and Jakarta Messaging, including all dependencies. It is intended for use by those not using maven, maven users should just import the Jakarta Enterprise Beans and Jakarta Messaging BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

There is a newer version: 35.0.0.Beta1
Show newest version
package org.jgroups.protocols;

/**
 * Discovery protocol for Google Cloud Storage. Very simple first shot at an impl, based on a simple migration of
 * S3_PING, as discussed in [1].

* The location property needs to be the bucket name.

* [1] https://developers.google.com/storage/docs/migrating#migration-simple * @author Bela Ban * @since 3.5 * @deprecated Use GOOGLE_PING2 instead: https://github.com/jgroups-extras/jgroups-google */ @Deprecated public class GOOGLE_PING extends S3_PING { public void init() throws Exception { if(host == null) host="storage.googleapis.com"; super.init(); } protected AWSAuthConnection createConnection() { // Fix for JGRP-1992. Always use secure port, if port is not specified int tmp_port=port > 0? port : Utils.SECURE_PORT; return new AWSAuthConnection(access_key, secret_access_key, use_ssl, host, tmp_port); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy