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

io.odysz.jclient.tier.Semantier Maven / Gradle / Ivy

There is a newer version: 0.4.41
Show newest version
package io.odysz.jclient.tier;

import io.odysz.semantic.CRUD;

public class Semantier {
    /**main table name - replace with TableMeta? */
    protected String mtabl;

    /** list's columns */
    TierCol[] _cols;

    /** client function / CRUD identity */
    protected String uri;

    /** Fields in details from, e.g. maintable's record fields */
    TierCol[] _fields;

    /** optional main table's pk */
    // pk: string;

    /** current crud */
    CRUD crud;

    /** current list's data */
    Tierec[] rows;

    /** current pk value */
    PkVal pkval; //  = {pk: undefined, v: undefined};

    /** current record */
    Tierec rec;

    /** All sub table's relationships */
    Tierelations relMeta;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy