Skip to content

Commit fbb8f82

Browse files
committed
Rename gcloud-java to google-cloud in javadoc comments
1 parent 6fd7163 commit fbb8f82

35 files changed

Lines changed: 78 additions & 78 deletions

File tree

google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*
2020
* <p>A simple usage example showing how to create a table if it does not exist and load data into
2121
* it. For the complete source code see
22-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/bigquery/snippets/CreateTableAndLoadData.java">
22+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/bigquery/snippets/CreateTableAndLoadData.java">
2323
* CreateTableAndLoadData.java</a>.
2424
* <pre> {@code
2525
* BigQuery bigquery = BigQueryOptions.defaultInstance().service();

google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/testing/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* RemoteBigQueryHelper.forceDelete(bigquery, DATASET);
3333
* }</pre>
3434
*
35-
* @see <a href="https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/TESTING.md#testing-code-that-uses-bigquery">
36-
* gcloud-java tools for testing</a>
35+
* @see <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-bigquery">
36+
* Google Cloud Java tools for testing</a>
3737
*/
3838
package com.google.cloud.bigquery.testing;

google-cloud-compute/src/main/java/com/google/cloud/compute/package-info.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
/**
1818
* A client to Google Cloud Compute.
1919
*
20-
* <p>Here's a simple usage example for using gcloud-java from App/Compute Engine. This example
20+
* <p>Here's a simple usage example for using google-cloud from App/Compute Engine. This example
2121
* shows how to create a snapshot from an existing disk. For the complete source code see
22-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/compute/snippets/CreateSnapshot.java">
22+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/compute/snippets/CreateSnapshot.java">
2323
* CreateSnapshot.java</a>.
2424
* <pre> {@code
2525
* Compute compute = ComputeOptions.defaultInstance().service();
@@ -36,7 +36,7 @@
3636
* }}</pre>
3737
* <p>This second example shows how to create a virtual machine instance. Complete source code can
3838
* be found at
39-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/compute/snippets/CreateInstance.java">
39+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/compute/snippets/CreateInstance.java">
4040
* CreateInstance.java</a>.
4141
* <pre> {@code
4242
* Compute compute = ComputeOptions.defaultInstance().service();

google-cloud-compute/src/main/java/com/google/cloud/compute/testing/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Compute compute = computeHelper.options().service();
2626
* } </pre>
2727
*
28-
* @see <a href="https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/TESTING.md#testing-code-that-uses-compute">
29-
* gcloud-java tools for testing</a>
28+
* @see <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-compute">
29+
* Google Cloud Java tools for testing</a>
3030
*/
3131
package com.google.cloud.compute.testing;

google-cloud-contrib/google-cloud-nio/src/main/java/com/google/cloud/storage/contrib/nio/package-info.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* }</pre>
3030
*
3131
* <p>For the complete source code see
32-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/nio/snippets/ReadAllLines.java">
32+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/nio/snippets/ReadAllLines.java">
3333
* ReadAllLines.java</a>.
3434
*
3535
* <p>If you want to configure the bucket per-environment, it might make more sense to use the
@@ -43,7 +43,7 @@
4343
* }</pre>
4444
*
4545
* <p>For the complete source code see
46-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/nio/snippets/GetFileSystem.java">
46+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/nio/snippets/GetFileSystem.java">
4747
* GetFileSystem.java</a>.
4848
*
4949
* <p>You can also use {@code InputStream} and {@code OutputStream} for streaming:
@@ -55,7 +55,7 @@
5555
* </pre>
5656
*
5757
* <p>For the complete source code see
58-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/nio/snippets/CreateInputStream.java">
58+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/nio/snippets/CreateInputStream.java">
5959
* CreateInputStream.java</a>.
6060
*
6161
* <p>You can set various attributes using
@@ -69,7 +69,7 @@
6969
* </pre>
7070
*
7171
* <p>For the complete source code see
72-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/nio/snippets/WriteFileWithAttributes.java">
72+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/nio/snippets/WriteFileWithAttributes.java">
7373
* WriteFileWithAttributes.java</a>.
7474
*
7575
* <p><b>NOTE:</b> Cloud Storage uses a flat namespace and therefore doesn't support real
@@ -93,7 +93,7 @@
9393
* </pre>
9494
*
9595
* <p>For the complete source code see
96-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/nio/snippets/CreateCloudStorageFileSystem.java">
96+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/nio/snippets/CreateCloudStorageFileSystem.java">
9797
* CreateCloudStorageFileSystem.java</a>.
9898
*/
9999
@javax.annotation.ParametersAreNonnullByDefault

google-cloud-contrib/google-cloud-nio/src/test/java/com/google/cloud/storage/contrib/nio/it/ITGcsNio.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
import java.util.logging.Logger;
5959

6060
/**
61-
* Integration test for gcloud-java-nio.
61+
* Integration test for google-cloud-nio.
6262
*
6363
* <p>This test actually talks to Google Cloud Storage (you need an account) and tests both reading
6464
* and writing. You *must* set the {@code GOOGLE_APPLICATION_CREDENTIALS} environment variable for

google-cloud-core/src/main/java/com/google/cloud/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
/**
18-
* Core classes for the {@code gcloud-java} library.
18+
* Core classes for the {@code google-cloud} library.
1919
*/
2020
package com.google.cloud;

google-cloud-datastore/src/main/java/com/google/cloud/datastore/package-info.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
/**
1818
* A client to the Google Cloud Datastore.
1919
*
20-
* <p>Here's a simple usage example for using gcloud-java from App/Compute Engine. This example
20+
* <p>Here's a simple usage example for using google-cloud from App/Compute Engine. This example
2121
* shows how to create a Datastore entity. For the complete source code see
22-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/datastore/snippets/CreateEntity.java">
22+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/datastore/snippets/CreateEntity.java">
2323
* CreateEntity.java</a>.
2424
* <pre> {@code
2525
* Datastore datastore = DatastoreOptions.defaultInstance().service();
@@ -35,7 +35,7 @@
3535
* <p>
3636
* This second example shows how to get and update a Datastore entity if it exists. For the complete
3737
* source code see
38-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/datastore/snippets/UpdateEntity.java">
38+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/datastore/snippets/UpdateEntity.java">
3939
* UpdateEntity.java</a>.
4040
* <pre> {@code
4141
* Datastore datastore = DatastoreOptions.defaultInstance().service();
@@ -49,10 +49,10 @@
4949
* .build();
5050
* datastore.update(entity);
5151
* }} </pre>
52-
* <p>When using gcloud-java from outside of App/Compute Engine, you have to <a
53-
* href="https://github.com/GoogleCloudPlatform/gcloud-java#specifying-a-project-id">specify a
52+
* <p>When using google-cloud from outside of App/Compute Engine, you have to <a
53+
* href="https://github.com/GoogleCloudPlatform/google-cloud-java#specifying-a-project-id">specify a
5454
* project ID</a> and
55-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java#authentication">provide
55+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java#authentication">provide
5656
* credentials</a>.
5757
*
5858
* @see <a href="https://cloud.google.com/datastore/">Google Cloud Datastore</a>

google-cloud-datastore/src/main/java/com/google/cloud/datastore/testing/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* helper.stop();
3131
* } </pre>
3232
*
33-
* @see <a href="https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/TESTING.md#testing-code-that-uses-datastore">
34-
* gcloud-java tools for testing</a>
33+
* @see <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-datastore">
34+
* Google Cloud Java tools for testing</a>
3535
*/
3636
package com.google.cloud.datastore.testing;

google-cloud-dns/src/main/java/com/google/cloud/dns/package-info.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@
2222
*
2323
* The first snippet shows how to create a zone resource. The complete source code can be found on
2424
* <a href=
25-
* "https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/dns/snippets/CreateAndListZones.java">
25+
* "https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/dns/snippets/CreateAndListZones.java">
2626
* CreateAndListZones.java</a>. Note that you need to replace the {@code domainName} with a domain
2727
* name that you own and the ownership of which you verified with Google.
2828
*
2929
* <pre> {@code
3030
* Dns dns = DnsOptions.defaultInstance().service();
3131
* String zoneName = "my-unique-zone";
3232
* String domainName = "someexampledomain.com.";
33-
* String description = "This is a gcloud-java-dns sample zone.";
33+
* String description = "This is a google-cloud-dns sample zone.";
3434
* ZoneInfo zoneInfo = ZoneInfo.of(zoneName, domainName, description);
3535
* Zone createdZone = dns.create(zoneInfo);
3636
* } </pre>
3737
*
3838
* <p>
3939
* The second example shows how to create records inside a zone. The complete code can be found on
4040
* <a href=
41-
* "https://github.com/GoogleCloudPlatform/gcloud-java/tree/master/gcloud-java-examples/src/main/java/com/google/cloud/examples/dns/snippets/CreateAndListDnsRecords.java">
41+
* "https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/dns/snippets/CreateAndListDnsRecords.java">
4242
* CreateAndListDnsRecords.java</a>.
4343
*
4444
* <pre> {@code
@@ -55,10 +55,10 @@
5555
* } </pre>
5656
*
5757
* <p>
58-
* When using gcloud-java from outside of App/Compute Engine, you have to
59-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java#specifying-a-project-id">specify a
58+
* When using google-cloud from outside of App/Compute Engine, you have to
59+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java#specifying-a-project-id">specify a
6060
* project ID</a> and
61-
* <a href="https://github.com/GoogleCloudPlatform/gcloud-java#authentication">provide
61+
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java#authentication">provide
6262
* credentials</a>.
6363
*
6464
* @see <a href="https://cloud.google.com/dns/">Google Cloud DNS</a>

0 commit comments

Comments
 (0)