Class ResourceProviderInfo
- java.lang.Object
-
- org.apache.sling.resourceresolver.impl.providers.ResourceProviderInfo
-
- All Implemented Interfaces:
Comparable<ResourceProviderInfo>
public class ResourceProviderInfo extends Object implements Comparable<ResourceProviderInfo>
Information about a registered resource provider
-
-
Constructor Summary
Constructors Constructor Description ResourceProviderInfo(org.osgi.framework.ServiceReference ref)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(ResourceProviderInfo o)
org.apache.sling.api.resource.runtime.dto.AuthType
getAuthType()
String
getName()
String
getPath()
org.osgi.framework.ServiceReference
getServiceReference()
boolean
getUseResourceAccessSecurity()
boolean
isAdaptable()
boolean
isAttributable()
boolean
isModifiable()
boolean
isRefreshable()
boolean
isValid()
String
toString()
-
-
-
Method Detail
-
isValid
public boolean isValid()
-
getServiceReference
public org.osgi.framework.ServiceReference getServiceReference()
-
getPath
public String getPath()
-
compareTo
public int compareTo(ResourceProviderInfo o)
- Specified by:
compareTo
in interfaceComparable<ResourceProviderInfo>
-
getAuthType
public org.apache.sling.api.resource.runtime.dto.AuthType getAuthType()
-
isModifiable
public boolean isModifiable()
-
isAdaptable
public boolean isAdaptable()
-
isRefreshable
public boolean isRefreshable()
-
isAttributable
public boolean isAttributable()
-
getName
public String getName()
-
getUseResourceAccessSecurity
public boolean getUseResourceAccessSecurity()
-
-