Class NoOpAttributePoint
- java.lang.Object
-
- org.technologybrewery.fermenter.stout.authz.NoOpAttributePoint
-
- All Implemented Interfaces:
StoutAttributePoint
public class NoOpAttributePoint extends Object implements StoutAttributePoint
To bootstrap the attributes, we need a default attribute point. There isn't a real case to use this outside of that.
-
-
Constructor Summary
Constructors Constructor Description NoOpAttributePoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<AttributeValue<?>>getValueForAttribute(String attributeId, String subject)Returns the valid for a specific attribute id.
-
-
-
Method Detail
-
getValueForAttribute
public Collection<AttributeValue<?>> getValueForAttribute(String attributeId, String subject)
Description copied from interface:StoutAttributePointReturns the valid for a specific attribute id. For our purposes, we will just use id along to determine the value and not worry about category, etc.- Specified by:
getValueForAttributein interfaceStoutAttributePoint- Parameters:
attributeId- attribute idsubject- the subject for which to find the attribute- Returns:
- The attribute's value
-
-