I am using XSSFSheet class of package org.apache.poi.xssf.usermodel and using the below code to password protect the sheet.
XSSFSheet sheet = workbook.createSheet("sheetName");
sheet.protectSheet("password");
Is there any way to unprotect the sheet using the same class(XSSFSheet) ?