/* * Copyright (c) 2010-2016 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.evolveum.midpoint.prism.match; import java.util.regex.Matcher; import java.util.regex.Pattern; import javax.xml.namespace.QName; import org.apache.commons.lang.StringUtils; import com.evolveum.midpoint.prism.PrismConstants; import com.evolveum.midpoint.util.DOMUtil; /** * Matching rule for universally unique identifier (UUID). * * Currently it is (almost) simple case ignore matching. * * @author Radovan Semancik * */ public class UuidMatchingRule implements MatchingRule<String> { public static final QName NAME = new QName(PrismConstants.NS_MATCHING_RULE, "uuid"); @Override public QName getName() { return NAME; } @Override public boolean isSupported(QName xsdType) { return (DOMUtil.XSD_STRING.equals(xsdType)); } /* (non-Javadoc) * @see com.evolveum.midpoint.model.match.MatchingRule#match(java.lang.Object, java.lang.Object) */ @Override public boolean match(String a, String b) { if (a == null && b == null) { return true; } if (a == null || b == null) { return false; } return StringUtils.equalsIgnoreCase(a.trim(), b.trim()); } /* (non-Javadoc) * @see com.evolveum.midpoint.prism.match.MatchingRule#normalize(java.lang.Object) */ @Override public String normalize(String original) { if (original == null) { return null; } return StringUtils.lowerCase(original).trim(); } @Override public boolean matchRegex(String a, String regex) { if (a == null){ return false; } Pattern pattern = Pattern.compile(regex, Pattern.CASE_INSENSITIVE); Matcher matcher = pattern.matcher(a); return matcher.matches(); } }