Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Refactor samples path to com.examples.gameservices...
Browse files Browse the repository at this point in the history
  • Loading branch information
dzlier-gcp committed Aug 28, 2020
1 parent 84710d8 commit e6482c2
Show file tree
Hide file tree
Showing 19 changed files with 38 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.clusters;
package com.example.gameservices.samples.clusters;

// [START cloud_game_servers_cluster_create]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.clusters;
package com.example.gameservices.samples.clusters;

// [START cloud_game_servers_cluster_delete]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.clusters;
package com.example.gameservices.samples.clusters;

// [START cloud_game_servers_cluster_get]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.clusters;
package com.example.gameservices.samples.clusters;

// [START cloud_game_servers_cluster_list]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.clusters;
package com.example.gameservices.samples.clusters;

// [START cloud_game_servers_cluster_update]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.deployments;
package com.example.gameservices.samples.deployments;

// [START cloud_game_servers_deployment_create]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.deployments;
package com.example.gameservices.samples.deployments;

// [START cloud_game_servers_deployment_delete]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.deployments;
package com.example.gameservices.samples.deployments;

// [START cloud_game_servers_deployment_get]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.deployments;
package com.example.gameservices.samples.deployments;

// [START cloud_game_servers_deployment_list]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.deployments;
package com.example.gameservices.samples.deployments;

// [START cloud_game_servers_deployment_update]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.realms;
package com.example.gameservices.samples.realms;

// [START cloud_game_servers_realm_create]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.realms;
package com.example.gameservices.samples.realms;

// [START cloud_game_servers_realm_delete]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.realms;
package com.example.gameservices.samples.realms;

// [START cloud_game_servers_realm_get]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.realms;
package com.example.gameservices.samples.realms;

// [START cloud_game_servers_realm_list]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples.realms;
package com.example.gameservices.samples.realms;

// [START cloud_game_servers_realm_update]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples;
package com.example.gameservices.samples;

import static org.junit.Assert.assertTrue;

import com.google.cloud.gameservices.samples.clusters.CreateCluster;
import com.google.cloud.gameservices.samples.clusters.DeleteCluster;
import com.google.cloud.gameservices.samples.clusters.GetCluster;
import com.google.cloud.gameservices.samples.clusters.ListClusters;
import com.google.cloud.gameservices.samples.clusters.UpdateCluster;
import com.google.cloud.gameservices.samples.realms.CreateRealm;
import com.example.gameservices.samples.clusters.CreateCluster;
import com.example.gameservices.samples.clusters.DeleteCluster;
import com.example.gameservices.samples.clusters.GetCluster;
import com.example.gameservices.samples.clusters.ListClusters;
import com.example.gameservices.samples.clusters.UpdateCluster;
import com.example.gameservices.samples.realms.CreateRealm;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import org.junit.After;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples;
package com.example.gameservices.samples;

import static org.junit.Assert.assertTrue;

import com.google.cloud.gameservices.samples.deployments.CreateDeployment;
import com.google.cloud.gameservices.samples.deployments.DeleteDeployment;
import com.google.cloud.gameservices.samples.deployments.GetDeployment;
import com.google.cloud.gameservices.samples.deployments.ListDeployments;
import com.google.cloud.gameservices.samples.deployments.UpdateDeployment;
import com.example.gameservices.samples.deployments.CreateDeployment;
import com.example.gameservices.samples.deployments.DeleteDeployment;
import com.example.gameservices.samples.deployments.GetDeployment;
import com.example.gameservices.samples.deployments.ListDeployments;
import com.example.gameservices.samples.deployments.UpdateDeployment;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import org.junit.After;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples;
package com.example.gameservices.samples;

import com.google.api.gax.longrunning.OperationFuture;
import com.google.cloud.gaming.v1.GameServerCluster;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@
* limitations under the License.
*/

package com.google.cloud.gameservices.samples;
package com.example.gameservices.samples;

import static org.junit.Assert.assertTrue;

import com.google.cloud.gameservices.samples.realms.CreateRealm;
import com.google.cloud.gameservices.samples.realms.DeleteRealm;
import com.google.cloud.gameservices.samples.realms.GetRealm;
import com.google.cloud.gameservices.samples.realms.ListRealms;
import com.google.cloud.gameservices.samples.realms.UpdateRealm;
import com.example.gameservices.samples.realms.CreateRealm;
import com.example.gameservices.samples.realms.DeleteRealm;
import com.example.gameservices.samples.realms.GetRealm;
import com.example.gameservices.samples.realms.UpdateRealm;
import com.example.gameservices.samples.realms.ListRealms;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import org.junit.After;
Expand Down

0 comments on commit e6482c2

Please sign in to comment.