io.oz.album.peer.Photo_OrgMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of syndoc-lib Show documentation
Show all versions of syndoc-lib Show documentation
Album common lib for Android client and jserv
package io.oz.album.peer;
import io.odysz.semantics.meta.TableMeta;
import io.odysz.transact.x.TransException;
/**
* @deprecated replaced by {@code io.oz.jserv.docs.syn.DocOrgMeta}.
*/
public class Photo_OrgMeta extends TableMeta {
public final String oid;
public final String pid;
public final String market;
public Photo_OrgMeta(String conn) throws TransException {
super("h_photo_org", null, conn);
oid = "oid";
pid = "pid";
market = "market";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy