/* * This file is part of the Heritrix web crawler (crawler.archive.org). * * Licensed to the Internet Archive (IA) by one or more individual * contributors. * * The IA licenses this file to You 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 org.archive.uid; import java.net.URI; import java.net.URISyntaxException; import java.util.Map; /** * A <code>record-id</code> generator. * * @contributor stack * @contributor gojomo * @version $Revision$ $Date$ */ public interface RecordIDGenerator { /** * @return A URI that can serve as a record-id. * @throws URISyntaxException */ public URI getRecordID(); /** * @param qualifiers Qualifiers to add. * @return A URI qualified with passed <code>qualifiers</code> that can * serve as a record-id, or, a new, unique record-id without qualifiers * (if qualifiers not easily implemented using passed URI scheme). */ public URI getQualifiedRecordID(final Map<String, String> qualifiers); /** * @param key Name of qualifier * @param value Value of qualifier * @return A URI qualified with passed <code>qualifiers</code> that can * serve as a record-id, or, a new, unique record-id without qualifiers * (if qualifiers not easily implemented using passed URI scheme). */ public URI getQualifiedRecordID(final String key, final String value); /** * Append (or if already present, update) qualifiers to passed * <code>recordId</code>. Use with caution. Guard against turning up a * result that already exists. Use when writing a group of records inside * a single transaction. * * How qualifiers are appended/updated varies with URI scheme. Its allowed * that an invocation of this method does nought but call * {@link #getRecordID()}, returning a new URI unrelated to the passed * recordId and passed qualifier. * @param recordId URI to append qualifier to. * @param qualifiers Map of qualifier values keyed by qualifier name. * @return New URI based off passed <code>uri</code> and passed qualifier. */ public URI qualifyRecordID(final URI recordId, final Map<String, String> qualifiers); }