ユーザー ID ファイルを基にして Domino ディレクトリにユーザーレコードを作成し、オプションでその ID ファイルを添付します。
public boolean addUserToAddressBook(String idfile, String fullname, String lastn)
throws NotesException
public boolean addUserToAddressBook(String idfile, String fullname, String lastn, String userpw)
throws NotesException
public boolean addUserToAddressBook(String idfile, String fullname, String lastn, String userpw, String firstn, String middle, String mailserv, String mailfilepath, String fwdaddr, String location, String comment)
throws NotesException
String idfile
Domino ディレクトリに追加されるユーザーの ID ファイル。絶対パスを指定します (例えば、c:¥notes¥data¥user.id)。
String fullname
ユーザーのフルネームです。
String lastn
ユーザーの姓です。
String userpw
ユーザー ID ファイルのパスワードです。
String firstn
ユーザーの名前 (ファーストネーム) です。
String middle
ユーザーのミドルネームです。
String mailserv
正規形式で指定されたユーザーのメールサーバーの名前。
String mailfilepath
ユーザーのメールファイルの相対パス名 (例えば、mail¥jyip.nsf)。
String fwdaddr
ユーザーの転送先のメールアドレスです。
String location
Domino ディレクトリレコードの場所フィールドの値。
String comment
Domino ディレクトリレコードのコメントフィールドの値。
boolean 型
操作が正常に終了した場合は true、それ以外の場合は false を返します。
ID を Domino ディレクトリレコードに添付する場合は、StoreIDInAddressBook を true に設定します。
このメソッドは、RegistrationServer によって指定されたサーバーの Domino ディレクトリ (names.nsf)、あるいは、このプロパティが設定されていない場合は、ローカル Domino データディレクトリ内の names.nsf に対して実行されます。
StoreIDInAddressBook は true である必要があります。
このメソッドは、UpdateAddressBook が true の場合、registerNewUser と共に自動的に発生します。