blob: 1b7c4cb8e52a154948a093703246fff27b6ed2fa [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.apache.sis.internal.profile.fra;
import java.util.Collection;
import org.apache.sis.internal.jaxb.TypeRegistration;
/**
* Completes the JAXB context with classes specific to the French profile.
* This class is declared in the {@code META-INF/services/org.apache.sis.internal.jaxb.TypeRegistration} file.
*
* @author Martin Desruisseaux (Geomatys)
* @version 1.0
* @since 0.4
* @module
*/
public final class ProfileTypes extends TypeRegistration {
/**
* Adds to the given collection the metadata types that should be given to the initial JAXB context.
*/
@Override
protected void getTypes(final Collection<Class<?>> addTo) {
addTo.add(DataIdentification.class);
addTo.add(DirectReferenceSystem.class);
addTo.add(IndirectReferenceSystem.class);
addTo.add(Constraints.class);
addTo.add(LegalConstraints.class);
addTo.add(SecurityConstraints.class);
}
/**
* Returns {@code true} for {@code export = false} in order to notify that we provide
* a {@code "RenameOnImport.lst"} file that need to be read.
*
* @param export  {@code true} for {@code "RenameOnImport.lst"}, {@code false} for {@code "RenameOnImport.lst"}.
* @return {@code true} for {@code "RenameOnImport.lst"}, {@code false} otherwise.
*/
@Override
protected boolean hasRenameFile(boolean export) {
return !export;
}
}