Class ContextResource
- java.lang.Object
-
- org.apache.sling.caconfig.resource.spi.ContextResource
-
@ProviderType public final class ContextResource extends java.lang.Object
Holds reference to a context root resource and configuration reference path that was detected for the configuration context.
-
-
Constructor Summary
Constructors Constructor Description ContextResource(@NotNull Resource resource, java.lang.String configRef)
Deprecated.ContextResource(@NotNull Resource resource, java.lang.String configRef, int serviceRanking)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
@Nullable java.lang.String
getConfigRef()
@NotNull Resource
getResource()
int
getServiceRanking()
int
hashCode()
-
-
-
Constructor Detail
-
ContextResource
public ContextResource(@NotNull @NotNull Resource resource, java.lang.String configRef, int serviceRanking)
- Parameters:
resource
- Context root resourceconfigRef
- Config reference (normally a resource path). May be null if theConfigurationResourceResolvingStrategy
has it's own concept of detecting the matching configuration.serviceRanking
- Service ranking of the context path strategy implementation
-
ContextResource
@Deprecated public ContextResource(@NotNull @NotNull Resource resource, java.lang.String configRef)
Deprecated.- Parameters:
resource
- Context root resourceconfigRef
- Config reference (normally a resource path). May be null if theConfigurationResourceResolvingStrategy
has it's own concept of detecting the matching configuration.
-
-
Method Detail
-
getResource
@NotNull public @NotNull Resource getResource()
- Returns:
- Context root resource
-
getConfigRef
@Nullable public @Nullable java.lang.String getConfigRef()
- Returns:
- Config reference (normally a resource path).
May be null if the
ConfigurationResourceResolvingStrategy
has it's own concept of detecting the matching configuration.
-
getServiceRanking
public int getServiceRanking()
- Returns:
- Service ranking of the context path strategy implementation
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-