/**
 * Copyright 2008-2009 DRIVER PROJECT (ICM UW)
 * Original author: Marek Horst
 *
 * 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 eu.dnetlib.common.profile;

/**
 * Index Configuration part of index body. Ver 1.1.0.
 * @author mhorst
 *
 */
public class IndexConfiguration {

	String metaDataFormat;

	String metaDataFormatInterpretation;
	
	String metaDataFormatLayout;
	
	long size;
	
	boolean invalid;

	public String getMetaDataFormat() {
		return metaDataFormat;
	}

	public void setMetaDataFormat(String metaDataFormat) {
		this.metaDataFormat = metaDataFormat;
	}

	public String getMetaDataFormatInterpretation() {
		return metaDataFormatInterpretation;
	}

	public void setMetaDataFormatInterpretation(String metaDataFormatInterpretation) {
		this.metaDataFormatInterpretation = metaDataFormatInterpretation;
	}

	public String getMetaDataFormatLayout() {
		return metaDataFormatLayout;
	}

	public void setMetaDataFormatLayout(String metaDataFormatLayout) {
		this.metaDataFormatLayout = metaDataFormatLayout;
	}

	public long getSize() {
		return size;
	}

	public void setSize(long size) {
		this.size = size;
	}

	public boolean isInvalid() {
		return invalid;
	}

	public void setInvalid(boolean invalid) {
		this.invalid = invalid;
	}
	
}
