// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.searchdefinition.document; import com.yahoo.document.DataType; /** * @author Einar M R Rosenvinge */ public class TemporarySDField extends SDField { public TemporarySDField(String name, DataType dataType, boolean isHeader, SDDocumentType owner) { super(owner, name, dataType, isHeader, owner, false); } public TemporarySDField(String name, DataType dataType) { super(null, name, dataType, true, false); } }