# LockParam ## LockParam Creates and initializes a LockParam object. ```java public LockParam(boolean killPassword, boolean accessPassword, boolean epc, boolean tid, boolean user); ``` ```{list-table} :align: left :class: list-table * - Parameter Name - In/Out - Type - Description * - killPassword - In - boolean - true: Lock the kill password false: Do not lock the kill password * - accessPassword - In - boolean - true: Lock the access password false: Do not lock the access password * - epc - In - boolean - true: Lock the EPC memory bank false: Do not lock the EPC memory bank * - tid - In - boolean - true: Lock the TID memory bank false: Do not lock the TID memory bank * - user - In - boolean - true: Lock the User memory bank false: Do not lock the User memory bank ``` **Sample Code**: ```java LockParam lockParam = new LockParam(true, true, true, true, true); ```