JVM - collection.doc()

Get a reference to a document in the collection.

import io.nitric.Nitric;
import io.nitric.resources.CollectionPermission;

class User {
  String name;
  int age;

  public User(String name, int age) {
    this.name = name;
    this.age = age;
  }
}

public class Application {
  public static void main(String[] args) {
    var profiles = Nitric.INSTANCE.collection("profiles", User.class).with(CollectionPermission.Read, CollectionPermission.Write);

    var drakesProfile = profiles.doc("Drake Mallard");

    Nitric.INSTANCE.run();
  }
}

Parameters

  • Name
    key
    Required
    Required
    Type
    String
    Description

    The key of the document to reference.

See also