當前位置: 首頁>>代碼示例>>Java>>正文


Java FirestoreOptions類代碼示例

本文整理匯總了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();
}
 
開發者ID:firebase,項目名稱:firebase-admin-java,代碼行數:14,代碼來源:FirestoreClient.java

示例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;
}
 
開發者ID:GoogleCloudPlatform,項目名稱:java-docs-samples,代碼行數:10,代碼來源:Quickstart.java

示例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();
}
 
開發者ID:GoogleCloudPlatform,項目名稱:java-docs-samples,代碼行數:11,代碼來源:QueryDataSnippetsIT.java

示例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);
}
 
開發者ID:GoogleCloudPlatform,項目名稱:java-docs-samples,代碼行數:10,代碼來源:ManageDataSnippetsIT.java

示例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();
}
 
開發者ID:GoogleCloudPlatform,項目名稱:java-docs-samples,代碼行數:11,代碼來源:RetrieveDataSnippetsIT.java


注:本文中的com.google.cloud.firestore.FirestoreOptions類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。