Class ResourceProviderDTO
- java.lang.Object
-
- org.apache.sling.api.resource.runtime.dto.ResourceProviderDTO
-
- Direct Known Subclasses:
ResourceProviderFailureDTO
public class ResourceProviderDTO extends java.lang.ObjectRepresents aorg.apache.sling.spi.resource.provider.ResourceProvider.- Since:
- 1.0.0 (Sling API Bundle 2.11.0)
-
-
Field Summary
Fields Modifier and Type Field Description booleanadaptableWhether the resource provider supports adaptable.booleanattributableWhether the resource provider supports attributes.AuthTypeauthTypeThe auth handling for this provider.booleanmodifiableWhether the resource provider supports modifications.java.lang.StringnameThe name of the resource provider.java.lang.StringpathThe path of the resource provider.booleanrefreshableWhether the resource provider supports refreshing.longserviceIdThe service id from the service registry.booleansupportsQueryLanguageWhether the resource provider supports query languages.booleanuseResourceAccessSecurityWhether resource access security should be used.
-
Constructor Summary
Constructors Constructor Description ResourceProviderDTO()
-
-
-
Field Detail
-
name
public java.lang.String name
The name of the resource provider. Optional might benull.
-
path
public java.lang.String path
The path of the resource provider. This is nevernull.
-
useResourceAccessSecurity
public boolean useResourceAccessSecurity
Whether resource access security should be used.
-
authType
public AuthType authType
The auth handling for this provider. This is nevernull.
-
modifiable
public boolean modifiable
Whether the resource provider supports modifications.
-
adaptable
public boolean adaptable
Whether the resource provider supports adaptable.
-
refreshable
public boolean refreshable
Whether the resource provider supports refreshing.
-
attributable
public boolean attributable
Whether the resource provider supports attributes.
-
supportsQueryLanguage
public boolean supportsQueryLanguage
Whether the resource provider supports query languages.
-
serviceId
public long serviceId
The service id from the service registry.
-
-