/**
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2009 Sun Microsystems Inc. All Rights Reserved
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at opensso/legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* $Id: ExactMatchResourceName.java,v 1.1 2009/08/19 05:40:32 veiming Exp $
*
*/
/**
* This plugin extends the functionality provided in
* <code>PrefixResourceName</code> to provide special handling to
* URL type prefix resource names in <code>canonicalize</code> method
* like validating port, assigning default port of 80, if port absent etc.
*/
public class ExactMatchResourceName
implements Comparator, ResourceName {
}
/**
* Canonicalizes a string.
*
* @param str the url string to be canonicalized
* @return the url string in its canonicalized form.
* @throws EntitlementException if the url string is invalid
*/
throws EntitlementException {
return str.toLowerCase();
}
/**
* This method is used to compare two url query parameter
* strings. A query parameter string is in the form of
* variablename=value.
*
* @param o1 a url query parameter to be compared
* @param o2 a url query parameter to be compared
* @return -1 if o1 < o2; 0 if o1 = o2; 1 if o1 > o2
*/
return -1;
} else {
return 0;
}
} else {
return 1;
}
}
}
return m.matches();
}
return resource;
}
return superResource + subResource;
}
boolean wildcardCompare) {
if (wildcardCompare) {
return ResourceMatch.WILDCARD_MATCH;
}
return ResourceMatch.NO_MATCH;
} else {
return ResourceMatch.EXACT_MATCH;
}
return ResourceMatch.NO_MATCH;
}
}
return null;
}
throw new UnsupportedOperationException("Not implemented");
}
}