// // PO_ObjectInfo.java // // WELD Java Client Persistent Object Management Package // Copyright Francis Chan (fchan@ic.eecs.berkeley.edu), 1997 // University of California, Berkeley // // // This program is in the public domain. // Permission to use, copy, modify, and distribute this software // and its documentation for NON-COMMERCIAL purposes and // without fee is hereby granted, as long as credit is given. /** * * PO_ObjectInfo Class * * This is a class which stores the information of a PersistentObject * that is sent over from network * * @version 1.0 Dec 1996 * @author Francis Chan */ public class PO_ObjectInfo{ public String className; public String contentName; public int id; public PO_ObjectInfo(String className, String contentName, int id){ this.className = className; this.contentName = contentName; this.id = id; } }