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

io.axway.iron.spi.model.snapshot.SerializableEntity Maven / Gradle / Ivy

package io.axway.iron.spi.model.snapshot;

import java.util.*;
import javax.xml.bind.annotation.*;

@XmlType(propOrder = {"entityName", "relations", "attributes", "uniques", "nextId", "instances"})
public class SerializableEntity {
    private String m_entityName;
    private Map m_relations;
    private Map m_attributes;
    private List> m_uniques;

    private long m_nextId;
    private Collection m_instances;

    public String getEntityName() {
        return m_entityName;
    }

    public void setEntityName(String entityName) {
        m_entityName = entityName;
    }

    public Map getRelations() {
        return m_relations;
    }

    public void setRelations(Map relations) {
        m_relations = relations;
    }

    public Map getAttributes() {
        return m_attributes;
    }

    public void setAttributes(Map attributes) {
        m_attributes = attributes;
    }

    public List> getUniques() {
        return m_uniques;
    }

    public void setUniques(List> uniques) {
        m_uniques = uniques;
    }

    public long getNextId() {
        return m_nextId;
    }

    public void setNextId(long nextId) {
        m_nextId = nextId;
    }

    public Collection getInstances() {
        return m_instances;
    }

    public void setInstances(Collection instances) {
        m_instances = instances;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy