Example of a client identifier created from string:
ClientID clientID = new ClientID("client-12345678");
Related specifications:
239240241242243244245
File file = new File(KAD_ID_FILE); if (!file.exists()) return ; FileChannel input_channel = new FileInputStream(file).getChannel(); ByteBuffer data = Misc.getByteBuffer(16); input_channel.read(data); client_id = new ClientID(data.array()); }