Method from org.apache.jempbox.xmp.XMPSchemaRightsManagement Detail: |
public void addOwner(String owner) {
addBagValue(prefix + ":Owner", owner);
}
Add an owner to the list. |
public String getCertificateURL() {
return getTextProperty(prefix + ":Certificate");
}
Get the URL of the rights managment certificate. |
public String getCopyright() {
return getTextProperty(prefix + ":Copyright");
}
Get the copyright information. |
public Boolean getMarked() {
Boolean b = getBooleanProperty(prefix + ":Marked");
return b != null ? b : Boolean.FALSE;
}
Get the flag that indicates if this is a marked resource.. |
public List<String> getOwners() {
return getBagList(prefix + ":Owner");
}
Get the complete list of legal owners. |
public String getUsageTerms() {
return getLanguageProperty(prefix + ":UsageTerms", null);
}
Get the default usage terms for the document. |
public String getUsageTerms(String language) {
return getLanguageProperty(prefix + ":UsageTerms", language);
}
Get the usage terms in a specific language. |
public List<String> getUsageTermsLanguages() {
return getLanguagePropertyLanguages(prefix + ":UsageTerms");
}
Get a list of all languages that a usage term exists for. |
public String getWebStatement() {
return getTextProperty(prefix + ":WebStatement");
}
Get the URL that describes the terms of this resource. |
public void removeOwner(String owner) {
removeBagValue(prefix + ":Owner", owner);
}
Remove an owner from the list. |
public void setCertificateURL(String certificate) {
setTextProperty("xmpRights:Certificate", certificate);
}
The online rights management certificate. |
public void setCopyright(String copyright) {
setTextProperty(prefix + ":Copyright", copyright);
}
Set the copyright information. |
public void setDescription(String language,
String terms) {
setLanguageProperty(prefix + ":UsageTerms", language, terms);
}
Set the usage terms of this resource in a specific language. |
public void setMarked(Boolean marked) {
setBooleanProperty(prefix + ":Marked", marked);
}
Flag indicating if this is a rights managed resource. |
public void setUsageTerms(String terms) {
setLanguageProperty(prefix + ":UsageTerms", null, terms);
}
Set the default usage terms for this resource. |
public void setWebStatement(String webStatement) {
setTextProperty(prefix + ":WebStatement", webStatement);
}
Set the external link that describes the owners/rights of this resource. |