| | |
| | | import org.opends.server.types.AttributeType; |
| | | import org.opends.server.types.DN; |
| | | import org.opends.server.authorization.dseecompat.Aci; |
| | | import org.opends.server.api.ExtensibleMatchingRule; |
| | | |
| | | |
| | | /** |
| | |
| | | |
| | | |
| | | /** |
| | | * Visit an extensible matching rule type. |
| | | * |
| | | * @param pd |
| | | * The extensible matching rule type property definition. |
| | | * @param v |
| | | * The property value to visit. |
| | | * @param p |
| | | * A visitor specified parameter. |
| | | * @return Returns a visitor specified result. |
| | | */ |
| | | public R visitExtensibleMatchingRuleType( |
| | | ExtensibleMatchingRuleTypePropertyDefinition pd, |
| | | ExtensibleMatchingRule v, P p) { |
| | | return visitUnknown(pd, v, p); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Visit an unknown type of property value. Implementations of this |
| | | * method can provide default behavior for unknown types of |
| | | * property. |