WriteProtection
Inheritance: java.lang.Object
All Implemented Interfaces: java.lang.Cloneable
public class WriteProtection implements Cloneable
Specifies write protection settings for a document.
To learn more, visit the Protect or Encrypt a Document documentation article.
Remarks:
Write protection specifies whether the author has recommended that the document is to be opened as read-only and/or require a password to modify a document.
Write protection is different from document protection. Write protection is specified in Microsoft Word in the options of the Save As dialog box.
You do not create instances of this class directly. You access document protection settings via the Document.getWriteProtection() property.
Examples:
Shows how to protect a document with a password.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world! This document is protected.");
// Enter a password up to 15 characters in length, and then verify the document's protection status.
doc.getWriteProtection().setPassword("MyPassword");
doc.getWriteProtection().setReadOnlyRecommended(true);
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
Assert.assertTrue(doc.getWriteProtection().validatePassword("MyPassword"));
// Protection does not prevent the document from being edited programmatically, nor does it encrypt the contents.
doc.save(getArtifactsDir() + "Document.WriteProtection.docx");
doc = new Document(getArtifactsDir() + "Document.WriteProtection.docx");
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
builder = new DocumentBuilder(doc);
builder.moveToDocumentEnd();
builder.writeln("Writing text in a protected document.");
Assert.assertEquals("Hello world! This document is protected." +
"\rWriting text in a protected document.", doc.getText().trim());
Methods
Method | Description |
---|---|
getReadOnlyRecommended() | Specifies whether the document author has recommended that the document be opened as read-only. |
isWriteProtected() | Returns true when a write protection password is set. |
setPassword(String password) | Sets the write protection password for the document. |
setReadOnlyRecommended(boolean value) | Specifies whether the document author has recommended that the document be opened as read-only. |
validatePassword(String password) | Returns true if the specified password is the same as the write-protection password the document was protected with. |
getReadOnlyRecommended()
public boolean getReadOnlyRecommended()
Specifies whether the document author has recommended that the document be opened as read-only.
Examples:
Shows how to protect a document with a password.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world! This document is protected.");
// Enter a password up to 15 characters in length, and then verify the document's protection status.
doc.getWriteProtection().setPassword("MyPassword");
doc.getWriteProtection().setReadOnlyRecommended(true);
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
Assert.assertTrue(doc.getWriteProtection().validatePassword("MyPassword"));
// Protection does not prevent the document from being edited programmatically, nor does it encrypt the contents.
doc.save(getArtifactsDir() + "Document.WriteProtection.docx");
doc = new Document(getArtifactsDir() + "Document.WriteProtection.docx");
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
builder = new DocumentBuilder(doc);
builder.moveToDocumentEnd();
builder.writeln("Writing text in a protected document.");
Assert.assertEquals("Hello world! This document is protected." +
"\rWriting text in a protected document.", doc.getText().trim());
Returns: boolean - The corresponding boolean value.
isWriteProtected()
public boolean isWriteProtected()
Returns true when a write protection password is set.
Examples:
Shows how to protect a document with a password.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world! This document is protected.");
// Enter a password up to 15 characters in length, and then verify the document's protection status.
doc.getWriteProtection().setPassword("MyPassword");
doc.getWriteProtection().setReadOnlyRecommended(true);
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
Assert.assertTrue(doc.getWriteProtection().validatePassword("MyPassword"));
// Protection does not prevent the document from being edited programmatically, nor does it encrypt the contents.
doc.save(getArtifactsDir() + "Document.WriteProtection.docx");
doc = new Document(getArtifactsDir() + "Document.WriteProtection.docx");
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
builder = new DocumentBuilder(doc);
builder.moveToDocumentEnd();
builder.writeln("Writing text in a protected document.");
Assert.assertEquals("Hello world! This document is protected." +
"\rWriting text in a protected document.", doc.getText().trim());
Returns: boolean - true when a write protection password is set.
setPassword(String password)
public void setPassword(String password)
Sets the write protection password for the document.
Remarks:
If a password is set, Microsoft Word will require the user to enter it or open the document as read-only.
Examples:
Shows how to protect a document with a password.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world! This document is protected.");
// Enter a password up to 15 characters in length, and then verify the document's protection status.
doc.getWriteProtection().setPassword("MyPassword");
doc.getWriteProtection().setReadOnlyRecommended(true);
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
Assert.assertTrue(doc.getWriteProtection().validatePassword("MyPassword"));
// Protection does not prevent the document from being edited programmatically, nor does it encrypt the contents.
doc.save(getArtifactsDir() + "Document.WriteProtection.docx");
doc = new Document(getArtifactsDir() + "Document.WriteProtection.docx");
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
builder = new DocumentBuilder(doc);
builder.moveToDocumentEnd();
builder.writeln("Writing text in a protected document.");
Assert.assertEquals("Hello world! This document is protected." +
"\rWriting text in a protected document.", doc.getText().trim());
Parameters:
Parameter | Type | Description |
---|---|---|
password | java.lang.String | The password to set. Cannot be null , but can be an empty string. |
setReadOnlyRecommended(boolean value)
public void setReadOnlyRecommended(boolean value)
Specifies whether the document author has recommended that the document be opened as read-only.
Examples:
Shows how to protect a document with a password.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world! This document is protected.");
// Enter a password up to 15 characters in length, and then verify the document's protection status.
doc.getWriteProtection().setPassword("MyPassword");
doc.getWriteProtection().setReadOnlyRecommended(true);
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
Assert.assertTrue(doc.getWriteProtection().validatePassword("MyPassword"));
// Protection does not prevent the document from being edited programmatically, nor does it encrypt the contents.
doc.save(getArtifactsDir() + "Document.WriteProtection.docx");
doc = new Document(getArtifactsDir() + "Document.WriteProtection.docx");
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
builder = new DocumentBuilder(doc);
builder.moveToDocumentEnd();
builder.writeln("Writing text in a protected document.");
Assert.assertEquals("Hello world! This document is protected." +
"\rWriting text in a protected document.", doc.getText().trim());
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The corresponding boolean value. |
validatePassword(String password)
public boolean validatePassword(String password)
Returns true if the specified password is the same as the write-protection password the document was protected with. If document is not write-protected with password then returns false .
Examples:
Shows how to protect a document with a password.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world! This document is protected.");
// Enter a password up to 15 characters in length, and then verify the document's protection status.
doc.getWriteProtection().setPassword("MyPassword");
doc.getWriteProtection().setReadOnlyRecommended(true);
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
Assert.assertTrue(doc.getWriteProtection().validatePassword("MyPassword"));
// Protection does not prevent the document from being edited programmatically, nor does it encrypt the contents.
doc.save(getArtifactsDir() + "Document.WriteProtection.docx");
doc = new Document(getArtifactsDir() + "Document.WriteProtection.docx");
Assert.assertTrue(doc.getWriteProtection().isWriteProtected());
builder = new DocumentBuilder(doc);
builder.moveToDocumentEnd();
builder.writeln("Writing text in a protected document.");
Assert.assertEquals("Hello world! This document is protected." +
"\rWriting text in a protected document.", doc.getText().trim());
Parameters:
Parameter | Type | Description |
---|---|---|
password | java.lang.String |
Returns: boolean