public class Download extends AbstractFoundationComponent
/libs/foundation/components/download in the repository for implementation details.| Modifier and Type | Field and Description |
|---|---|
static String |
PROP_DESCRIPTION |
static String |
PROP_FILE |
static String |
PROP_FILE_NAME |
static String |
PROP_FILE_REF |
static String |
PROP_UNDO_BLOBS |
static String |
RESOURCE_TYPE |
changeProperties, client, componentPath, DEFAULT_LOCATION, jsonNode, location, pagePath| Constructor and Description |
|---|
Download(ComponentClient client,
String pagePath,
String location,
String nameHint)
The constructor stores all the component path information like parentPage, name etc.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getResourceType()
The resource type for the component, e.g.
|
org.apache.sling.testing.clients.SlingHttpResponse |
setDownload(String mimeType,
String fileName,
String resourcePath,
int... expectedStatus)
Uploads the file to be used for the download component.
|
org.apache.sling.testing.clients.SlingHttpResponse |
setReference(String fileReference,
String fileName,
int... expectedStatus)
Sets the reference to a file in the repository to be used by the download component.
|
create, getClient, getComponentNode, getComponentPath, getCreateFormEntity, getFirstChild, getLocation, getName, getNext, getNextNodePath, getPagePath, getParentPath, getPrevious, getPreviousNodePath, getProperty, getPropertyAsString, getPropertyAsStringArray, reorder, save, setProperty, setPropertypublic static final String RESOURCE_TYPE
public static final String PROP_DESCRIPTION
public static final String PROP_FILE_NAME
public static final String PROP_FILE_REF
public static final String PROP_FILE
public static final String PROP_UNDO_BLOBS
public Download(ComponentClient client, String pagePath, String location, String nameHint)
client - The FoundationClient that's
creating this
instance.pagePath - path to the page that will contain the component.location - relative location to the parent node inside the page that will contain the component node.nameHint - name to be used for the component node. Might get altered by the server if a naming conflict
occurs. The AbstractComponent.getName() method will return the correct name after (String,int...) has been called.public String getResourceType()
AbstractComponentsling:resourceType property of the node.getResourceType in class AbstractComponentpublic org.apache.sling.testing.clients.SlingHttpResponse setDownload(String mimeType, String fileName, String resourcePath, int... expectedStatus) throws org.apache.sling.testing.clients.ClientException
mimeType - mime type of filefileName - file nameresourcePath - path to the resourceexpectedStatus - list of allowed HTTP Status to be returned. if not set, status 200 is assumedSlingHttpResponse wrapping the HTML response returned by Slingorg.apache.sling.testing.clients.ClientException - If something fails during request/response cyclepublic org.apache.sling.testing.clients.SlingHttpResponse setReference(String fileReference, String fileName, int... expectedStatus) throws org.apache.sling.testing.clients.ClientException
fileReference - reference to filefileName - file nameexpectedStatus - list of allowed HTTP Status to be returned. if not set, status 200 is assumedSlingHttpResponse wrapping the HTML response returned by Slingorg.apache.sling.testing.clients.ClientException - If something fails during request/response cycleCopyright © 2018. All rights reserved.