All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dbtools.schema.schemafile.SchemaTableIndex Maven / Gradle / Ivy

There is a newer version: 11.0.0
Show newest version
package org.dbtools.schema.schemafile;

import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Root;

import java.util.List;

@Root
public class SchemaTableIndex {
    @ElementList(entry = "indexField", inline = true, required = false)
    private List indexFields;

    public List getIndexFields() {
        return indexFields;
    }

    public void setIndexFields(List indexFields) {
        this.indexFields = indexFields;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy