final public class CatalogItemHolder implements org.omg.CORBA.portable.Streamable {
  public CatalogItem value;
  public CatalogItemHolder() {
  }
  public CatalogItemHolder(CatalogItem value) {
    this.value = value;
  }
  public void _read(org.omg.CORBA.portable.InputStream input) {
    value = CatalogItemHelper.read(input);
  }
  public void _write(org.omg.CORBA.portable.OutputStream output) {
    CatalogItemHelper.write(output, value);
  }
  public org.omg.CORBA.TypeCode _type() {
    return CatalogItemHelper.type();
  }
}
