Package org.apache.kafka.common.resource
Class ResourcePattern
- java.lang.Object
-
- org.apache.kafka.common.resource.ResourcePattern
-
-
Field Summary
Fields Modifier and Type Field Description static String
WILDCARD_RESOURCE
A special literal resource name that corresponds to 'all resources of a certain type'.
-
Constructor Summary
Constructors Constructor Description ResourcePattern(ResourceType resourceType, String name, PatternType patternType)
Create a pattern using the supplied parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
boolean
isUnknown()
String
name()
PatternType
patternType()
ResourceType
resourceType()
ResourcePatternFilter
toFilter()
String
toString()
-
-
-
Field Detail
-
WILDCARD_RESOURCE
public static final String WILDCARD_RESOURCE
A special literal resource name that corresponds to 'all resources of a certain type'.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ResourcePattern
public ResourcePattern(ResourceType resourceType, String name, PatternType patternType)
Create a pattern using the supplied parameters.- Parameters:
resourceType
- non-null, specific, resource typename
- non-null resource name, which can be theWILDCARD_RESOURCE
.patternType
- non-null, specific, resource pattern type, which controls how the pattern will match resource names.
-
-
Method Detail
-
resourceType
public ResourceType resourceType()
- Returns:
- the specific resource type this pattern matches
-
name
public String name()
- Returns:
- the resource name.
-
patternType
public PatternType patternType()
- Returns:
- the resource pattern type.
-
toFilter
public ResourcePatternFilter toFilter()
- Returns:
- a filter which matches only this pattern.
-
isUnknown
public boolean isUnknown()
- Returns:
true
if this Resource has any UNKNOWN components.
-
-