Method from org.apache.jempbox.xmp.ResourceRef Detail: |
public String getDocumentID() {
return XMLUtil.getStringValue( parent, "stRef:documentID" );
}
Get the referenced resource's document id. |
public Element getElement() {
return parent;
}
Get the underlying XML element. |
public String getInstanceID() {
return XMLUtil.getStringValue( parent, "stRef:instanceID" );
}
Get the referenced resource's id. |
public String getManager() {
return XMLUtil.getStringValue( parent, "stRef:manager" );
}
Get name of the asset management system that manages this resource. |
public String getManagerTo() {
return XMLUtil.getStringValue( parent, "stRef:managerTo" );
}
URI identifying the managed resource. |
public String getManagerUI() {
return XMLUtil.getStringValue( parent, "stRef:managerUI" );
}
URI to info about the managed resource. |
public String getManagerVariant() {
return XMLUtil.getStringValue( parent, "stRef:managerVariant" );
}
Get name of the variant of asset management system that manages this resource. |
public String getRenditionClass() {
return XMLUtil.getStringValue( parent, "stRef:renditionClass" );
}
|
public String getRenditionParams() {
return XMLUtil.getStringValue( parent, "stRef:renditionParams" );
}
Get the extra rendition params. |
public String getVersionID() {
return XMLUtil.getStringValue( parent, "stRef:versionID" );
}
Get the referenced resource's document version id. |
public void setDocumentID(String id) {
XMLUtil.setStringValue( parent, "stRef:documentID", id );
}
Set the referenced resource's document id. |
public void setInstanceID(String id) {
XMLUtil.setStringValue( parent, "stRef:instanceID", id );
}
Set the referenced resource's id. |
public void setMangager(String manager) {
XMLUtil.setStringValue( parent, "stRef:manager", manager );
}
Set the name of the system that manages this resource. |
public void setMangagerTo(String managerTo) {
XMLUtil.setStringValue( parent, "stRef:managerTo", managerTo );
}
Set the URI to the managed resource. |
public void setMangagerUI(String managerUI) {
XMLUtil.setStringValue( parent, "stRef:managerUI", managerUI );
}
Set the URI to the info about the managed resource. |
public void setMangagerVariant(String managerVariant) {
XMLUtil.setStringValue( parent, "stRef:managerVariant", managerVariant );
}
Set the name of the variant of the system that manages this resource. |
public void setRenditionClass(String renditionClass) {
XMLUtil.setStringValue( parent, "stRef:renditionClass", renditionClass );
}
Set the rendition class. The rendition class is derived from a defined
set of names. The value is series of colon separated tokens and parameters.
Defined values are:
Token Name | Description |
default | Specifies master document, no additional tokens allowed |
thumbnail |
A simplied preview. Recommended order is: thumbnailformat:size:colorspace |
screen | Screen resolution |
proof | A review proof |
draft | A review rendition |
low-res | A low resolution, full size stand-in |
|
public void setRenditionParams(String params) {
XMLUtil.setStringValue( parent, "stRef:renditionParams", params );
}
Set addition rendition params. |
public void setVersionID(String id) {
XMLUtil.setStringValue( parent, "stRef:veresionID", id );
}
Set the referenced resource's version id. |