Base class for almost every resource type in the platform's WebDAV resource tree, providing shared behaviour for authentication, authorisation, locking, path resolution and OAuth2 login discovery. Concrete resources extend this class rather than implementing the Milton resource interfaces directly, so changes here affect the whole resource tree. It also carries the scripting API exposed to templates and server-side JavaScript, such as find(), closest() and getLink().

Group: Resources

Implements: CommonResource, PropFindableResource, AccessControlledResource, ReportableResource, LockableResource, OAuth2Resource


Properties

PropertyReturnsDescription
accessControlListMap<Principal,List<Priviledge>>The access control list of allowed privileges per principal for this resource. This implementation is not populated; access is instead resolved dynamically via the security manager, so this always returns null.
asListResourceListThis resource wrapped as a single-element ResourceList, convenient for scripts that want to treat a single resource the same way as a list of resources.
attributesMap<String,Object>A mutable, request-scoped map of arbitrary attributes attached to this resource instance, for passing values between code that shares a reference to the same resource.
breadCrumbsMap<String,String>A map of breadcrumb URLs to labels for this resource, for building navigation trails. This base implementation always returns null; subclasses may override it to provide a real trail.
createDateDateThe date this resource was created. This base implementation always returns null; subclasses that track creation dates override it.
dirbooleanWhether this resource is a collection (folder-like) resource rather than a single item.
hrefStringThe URL-encoded path to this resource, suitable for use as a browser or WebDAV href. Collection resources get a trailing slash.
linkStringA ready-to-use HTML anchor tag linking to this resource's href, using its name as the link text.
modifiedDateDateThe date this resource was last modified. This base implementation always returns null; subclasses that track modification dates override it.
oAuth2ProvidersMap<String,OAuth2Provider>The OAuth2 login providers available for this resource, combining the providers configured on the social login app with the platform's built-in social posting services mapped onto their OAuth2 provider templates.
pathPathThe path of this resource within its resource tree, built by appending this resource's name to its parent's path, as a Path object with convenient path manipulation methods.
principalCollectionHrefsHrefListThe hrefs of the collections that contain principals, so a WebDAV client can discover where to list users. This base implementation always returns the single href "/users/".
principalURLStringThe href of the owning principal resource for this resource, found by walking up the parent chain to the nearest principal resource.
publicbooleanWhether this resource is readable by anonymous, unauthenticated users. This base implementation always returns false; subclasses override it where public content is allowed.
readablebooleanWhether the current user, who may be null for an anonymous request, has READ_CONTENT permission on this resource.
realmStringThe HTTP authentication realm used for digest and basic authentication challenges on this resource.
uniqueIdStringA unique identifier for this resource. This base implementation always returns null; resource types that need a stable id (for example content resources) override it.
writablebooleanWhether the current user, who may be null for an anonymous request, has WRITE_CONTENT permission on this resource.

Methods

getBreadCrumbs() · getUniqueId() · getRealm() · getPrincipalURL() · getPrincipalCollectionHrefs() · getPath() · getHref() · getLink() · isPublic() · find(String path) · find(Path p) · isDir() · getContentType(String accepts) · getModifiedDate() · getCreateDate() · getAccessControlList() · closest(String type) · closest(Class<T> c) · isReadable() · isWritable() · getAsList() · getOAuth2Providers() · getAttributes()

getBreadCrumbs()

Returns: Map<String,String>

A map of breadcrumb URLs to labels for this resource, for building navigation trails. This base implementation always returns null; subclasses may override it to provide a real trail.

getUniqueId()

Returns: String

A unique identifier for this resource. This base implementation always returns null; resource types that need a stable id (for example content resources) override it.

getRealm()

Returns: String

The HTTP authentication realm used for digest and basic authentication challenges on this resource.

getPrincipalURL()

Returns: String

The href of the owning principal resource for this resource, found by walking up the parent chain to the nearest principal resource.

getPrincipalCollectionHrefs()

Returns: HrefList

The hrefs of the collections that contain principals, so a WebDAV client can discover where to list users. This base implementation always returns the single href "/users/".

getPath()

Returns: Path

The path of this resource within its resource tree, built by appending this resource's name to its parent's path, as a Path object with convenient path manipulation methods.

getHref()

Returns: String

The URL-encoded path to this resource, suitable for use as a browser or WebDAV href. Collection resources get a trailing slash.

Returns: String

A ready-to-use HTML anchor tag linking to this resource's href, using its name as the link text.

isPublic()

Returns: boolean

Whether this resource is readable by anonymous, unauthenticated users. This base implementation always returns false; subclasses override it where public content is allowed.

find(String path)

Returns: Resource

Finds a resource within the website by its path. A relative path is evaluated relative to this resource; an absolute path is evaluated from the website root. For example find("/programs/p1") looks up the program p1 from the root, and find("../p1") looks up p1 in the folder above this resource.

ParameterDescription
paththe relative or absolute path to resolve

find(Path p)

Returns: Resource

Finds a resource by walking a Path object one part at a time, following "." and ".." segments and looking up each remaining part as a child of the current resource.

ParameterDescription
pthe path to resolve, relative to this resource or absolute

isDir()

Returns: boolean

Whether this resource is a collection (folder-like) resource rather than a single item.

getContentType(String accepts)

Returns: String

The content type this resource should be served as. This base implementation always returns "text/html; charset=UTF-8" for getable resources (regardless of the accepts header, since XHTML is not used because of CKEditor compatibility) and an empty string otherwise. Subclasses override this where a different content type is needed.

ParameterDescription
acceptsthe client's Accept header value, currently not used to vary the result

getModifiedDate()

Returns: Date

The date this resource was last modified. This base implementation always returns null; subclasses that track modification dates override it.

getCreateDate()

Returns: Date

The date this resource was created. This base implementation always returns null; subclasses that track creation dates override it.

getAccessControlList()

Returns: Map<Principal,List<Priviledge>>

The access control list of allowed privileges per principal for this resource. This implementation is not populated; access is instead resolved dynamically via the security manager, so this always returns null.

closest(String type)

Returns: CommonResource

Finds the closest resource, starting from this one and walking up through its parents, whose is(type) returns true.

ParameterDescription
typethe type name to match, as used by is(String)

closest(Class<T> c)

Returns: T

Finds the closest resource, starting from this one and walking up through its parents, that is an instance of the given class.

ParameterDescription
cthe class to match against

isReadable()

Returns: boolean

Whether the current user, who may be null for an anonymous request, has READ_CONTENT permission on this resource.

isWritable()

Returns: boolean

Whether the current user, who may be null for an anonymous request, has WRITE_CONTENT permission on this resource.

getAsList()

Returns: ResourceList

This resource wrapped as a single-element ResourceList, convenient for scripts that want to treat a single resource the same way as a list of resources.

getOAuth2Providers()

Returns: Map<String,OAuth2Provider>

The OAuth2 login providers available for this resource, combining the providers configured on the social login app with the platform's built-in social posting services mapped onto their OAuth2 provider templates.

getAttributes()

Returns: Map<String,Object>

A mutable, request-scoped map of arbitrary attributes attached to this resource instance, for passing values between code that shares a reference to the same resource.

To get full access to the Kademi Hub existing customers can login here, or new customers can register here.