return resourceParentPath;
}
public void setResourcePath(final String filePath) {
if (filePath == null) {
throw new ScimpiException("Path must be specified");
} else {
final int lastSlash = filePath.lastIndexOf('/');
if (lastSlash == -1) {
throw new ScimpiException("No slash in request path: " + filePath);
}
final String path = /* getContextPath() + */filePath.substring(0, lastSlash + 1);
LOG.debug("resource path set = " + path);
this.resourceParentPath = path;