Exemplo n.º 1
0
  private Ice.Identity createBookIdentity(String isbn) {
    //
    // Note that the identity category is important since the
    // locator was installed for the category 'book'.
    //
    Ice.Identity ident = new Ice.Identity();
    ident.category = "book";
    ident.name = isbn;

    return ident;
  }