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

com.google.gcloud.datastore.package-info Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2015 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * A client to the Google Cloud Datastore.
 *
 * 

Here's a simple usage example for using gcloud-java from App/Compute Engine. This example * shows how to create a Datastore entity. For the complete source code see * * CreateEntity.java. *

 {@code
 * Datastore datastore = DatastoreOptions.defaultInstance().service();
 * KeyFactory keyFactory = datastore.newKeyFactory().kind("keyKind");
 * Key key = keyFactory.newKey("keyName");
 * Entity entity = Entity.builder(key)
 *     .set("name", "John Doe")
 *     .set("age", 30)
 *     .set("access_time", DateTime.now())
 *     .build();
 * datastore.put(entity);
 * } 
*

* This second example shows how to get and update a Datastore entity if it exists. For the complete * source code see * * UpdateEntity.java. *

 {@code
 * Datastore datastore = DatastoreOptions.defaultInstance().service();
 * KeyFactory keyFactory = datastore.newKeyFactory().kind("keyKind");
 * Key key = keyFactory.newKey("keyName");
 * Entity entity = datastore.get(key);
 * if (entity != null) {
 *   System.out.println("Updating access_time for " + entity.getString("name"));
 *   entity = Entity.builder(entity)
 *       .set("access_time", DateTime.now())
 *       .build();
 *   datastore.update(entity);
 * }} 
*

When using gcloud-java from outside of App/Compute Engine, you have to specify a * project ID and * provide * credentials. * * @see Google Cloud Datastore */ package com.google.gcloud.datastore;





© 2015 - 2025 Weber Informatics LLC | Privacy Policy