本文整理匯總了Java中com.google.cloud.firestore.FirestoreOptions類的典型用法代碼示例。如果您正苦於以下問題:Java FirestoreOptions類的具體用法?Java FirestoreOptions怎麽用?Java FirestoreOptions使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
FirestoreOptions類屬於com.google.cloud.firestore包,在下文中一共展示了FirestoreOptions類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: FirestoreClient
import com.google.cloud.firestore.FirestoreOptions; //導入依賴的package包/類
private FirestoreClient(FirebaseApp app) {
checkNotNull(app, "FirebaseApp must not be null");
String projectId = ImplFirebaseTrampolines.getProjectId(app);
checkArgument(!Strings.isNullOrEmpty(projectId),
"Project ID is required for accessing Firestore. Use a service account credential or "
+ "set the project ID explicitly via FirebaseOptions. Alternatively you can also "
+ "set the project ID via the GCLOUD_PROJECT environment variable.");
this.firestore = FirestoreOptions.newBuilder()
.setCredentials(ImplFirebaseTrampolines.getCredentials(app))
.setProjectId(projectId)
.build()
.getService();
}
示例2: Quickstart
import com.google.cloud.firestore.FirestoreOptions; //導入依賴的package包/類
/**
* Initialize Firestore using default project ID.
*/
public Quickstart() {
// [START fs_initialize]
Firestore db = FirestoreOptions.getDefaultInstance().getService();
// [END fs_initialize]
this.db = db;
}
示例3: setUpBeforeClass
import com.google.cloud.firestore.FirestoreOptions; //導入依賴的package包/類
@BeforeClass
public static void setUpBeforeClass() throws Exception {
FirestoreOptions firestoreOptions = FirestoreOptions.getDefaultInstance().toBuilder()
.setProjectId(projectId)
.build();
db = firestoreOptions.getService();
deleteAllDocuments();
queryDataSnippets = new QueryDataSnippets(db);
queryDataSnippets.prepareExamples();
}
示例4: setUpBeforeClass
import com.google.cloud.firestore.FirestoreOptions; //導入依賴的package包/類
@BeforeClass
public static void setUpBeforeClass() throws Exception {
FirestoreOptions firestoreOptions = FirestoreOptions.getDefaultInstance().toBuilder()
.setProjectId(projectId)
.build();
db = firestoreOptions.getService();
deleteAllDocuments();
manageDataSnippets = new ManageDataSnippets(db);
}
示例5: setUpBeforeClass
import com.google.cloud.firestore.FirestoreOptions; //導入依賴的package包/類
@BeforeClass
public static void setUpBeforeClass() throws Exception {
FirestoreOptions firestoreOptions = FirestoreOptions.getDefaultInstance().toBuilder()
.setProjectId(projectId)
.build();
db = firestoreOptions.getService();
deleteAllDocuments();
retrieveDataSnippets = new RetrieveDataSnippets(db);
retrieveDataSnippets.prepareExamples();
}