📄 contentitem.html
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><!--NewPage--><HTML><HEAD><!-- Generated by javadoc (build 1.4.2) on Wed Jul 19 18:22:41 EDT 2006 --><TITLE>ContentItem (IBM WebSphere Portal Version 6.0.0.0 API Docs)</TITLE><META NAME="keywords" CONTENT="com.ibm.content.binder.model.ContentItem interface"><LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"><SCRIPT type="text/javascript">function windowTitle(){ parent.document.title="ContentItem (IBM WebSphere Portal Version 6.0.0.0 API Docs)";}</SCRIPT></HEAD><BODY BGCOLOR="white" onload="windowTitle();"><!-- ========= START OF TOP NAVBAR ======= --><A NAME="navbar_top"><!-- --></A><A HREF="#skip-navbar_top" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_top_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <A HREF="#main"><FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../serialized-form.html"><FONT CLASS="NavBarFont1"><B>Serialized</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../com/ibm/content/binder/model/BinderFactory.html" title="interface in com.ibm.content.binder.model"><B>PREV CLASS</B></A> <A HREF="../../../../../com/ibm/content/binder/model/ContentReference.html" title="interface in com.ibm.content.binder.model"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A> <A HREF="ContentItem.html" target="_top"><B>NO FRAMES</B></A> <SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--></SCRIPT><NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_top"></A><!-- ========= END OF TOP NAVBAR ========= --><HR><A NAME="main"></A><!-- ======== START OF CLASS DATA ======== --><H2><FONT SIZE="-1">com.ibm.content.binder.model</FONT><BR>Interface ContentItem</H2><DL><DT><B>All Superinterfaces:</B> <DD><A HREF="../../../../../com/ibm/content/binder/model/ContentReference.html" title="interface in com.ibm.content.binder.model">ContentReference</A></DD></DL><HR><DL><DT>public interface <B>ContentItem</B><DT>extends <A HREF="../../../../../com/ibm/content/binder/model/ContentReference.html" title="interface in com.ibm.content.binder.model">ContentReference</A></DL><P>A document stored in a binder. Unlike a <A HREF="../../../../../com/ibm/content/binder/model/ContentReference.html" title="interface in com.ibm.content.binder.model"><CODE>ContentReference</CODE></A>, a <code>ContentItem</code> is not only referenced, but fully stored inside the <A HREF="../../../../../com/ibm/content/binder/model/Binder.html" title="interface in com.ibm.content.binder.model"><CODE>Binder</CODE></A> it is attached to. <code>ContentItem</code> extends from <A HREF="../../../../../com/ibm/content/binder/model/ContentReference.html" title="interface in com.ibm.content.binder.model"><CODE>ContentReference</CODE></A>, as both share a number of properties and to allow homogeneous processing of all <A HREF="../../../../../com/ibm/content/binder/model/Binder.html" title="interface in com.ibm.content.binder.model"><CODE>Binder</CODE></A> content, but trying to set the contentProvider or uri properties of a <code>ContentItem</code> will throw an Exception. <br><br> The content of the document can be retrieved through the <code>InputStream</code> returned by the <A HREF="../../../../../com/ibm/content/binder/model/ContentItem.html#getContentStream()"><CODE>getContentStream()</CODE></A> method. <br><br> A <code>ContentItem</code> instance can be created using a <A HREF="../../../../../com/ibm/content/binder/model/BinderFactory.html" title="interface in com.ibm.content.binder.model"><CODE>BinderFactory</CODE></A>, by passing to its <A HREF="../../../../../com/ibm/content/binder/model/BinderFactory.html#createContentItem(java.lang.String)"><CODE>BinderFactory.createContentItem(String)</CODE></A> method, the name of the <code>ContentItem</code> to create:<br><br> <code> BinderFactory binderFactory = ...;<br> ContentItem item = binderFactory.createContentItem("Finance Report");<br> </code> <br><br> <u>Note:</u> even though <code>ContentItem</code> extends from <A HREF="../../../../../com/ibm/content/binder/model/ContentReference.html" title="interface in com.ibm.content.binder.model"><CODE>ContentReference</CODE></A>, it is not possible to set the content provider or uri properties of a <code>ContentItem</code>. Attempting to do so will raise an IllegalStateException.<P><P><DL><DT><B>Since:</B></DT> <DD>6.0</DD></DL><HR><P><!-- ======== NESTED CLASS SUMMARY ======== --><!-- =========== FIELD SUMMARY =========== --><A NAME="field_summary"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TH ALIGN="left" COLSPAN=2><FONT SIZE="+2"><B>Field Summary</B></FONT></TH></TR></TABLE> <A NAME="fields_inherited_from_class_com.ibm.content.binder.model.ContentReference"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"><TH ALIGN="left"><B>Fields inherited from interface com.ibm.content.binder.model.<A HREF="../../../../../com/ibm/content/binder/model/ContentReference.html" title="interface in com.ibm.content.binder.model">ContentReference</A></B></TH></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD><CODE><A HREF="../../../../../com/ibm/content/binder/model/ContentReference.html#CONTENT_PROVIDER_PDM">CONTENT_PROVIDER_PDM</A>, <A HREF="../../../../../com/ibm/content/binder/model/ContentReference.html#CONTENT_PROVIDER_SIMPLE_VALUE">CONTENT_PROVIDER_SIMPLE_VALUE</A></CODE></TD></TR></TABLE> <!-- ======== CONSTRUCTOR SUMMARY ======== --><!-- ========== METHOD SUMMARY =========== --><A NAME="method_summary"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TH ALIGN="left" COLSPAN=2><FONT SIZE="+2"><B>Method Summary</B></FONT></TH></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> java.io.InputStream</CODE></FONT></TD><TD><CODE><B><A HREF="../../../../../com/ibm/content/binder/model/ContentItem.html#getContentStream()">getContentStream</A></B>()</CODE><BR> An InputStream containing the content stored in this <code>ContentItem</code>.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> java.lang.String</CODE></FONT></TD><TD><CODE><B><A HREF="../../../../../com/ibm/content/binder/model/ContentItem.html#getId()">getId</A></B>()</CODE><BR> The ID identifying this <code>ContentItem</code> in the underlying Portal Content Management API.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> java.lang.String</CODE></FONT></TD><TD><CODE><B><A HREF="../../../../../com/ibm/content/binder/model/ContentItem.html#getMimeType()">getMimeType</A></B>()</CODE><BR> The mime type of the content stored in this <code>ContentItem</code>.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> java.lang.Object</CODE></FONT></TD><TD><CODE><B><A HREF="../../../../../com/ibm/content/binder/model/ContentItem.html#getObject()">getObject</A></B>()</CODE><BR> Convenience method to retrieve an Object that has been serialized in this <code>ContentItem</code>, using <A HREF="../../../../../com/ibm/content/binder/model/ContentItem.html#setObject(java.lang.Object)"><CODE>setObject(Object)</CODE></A>.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../../../../com/ibm/content/binder/model/ContentItem.html#setContentStream(java.io.InputStream)">setContentStream</A></B>(java.io.InputStream contentStream)</CODE><BR> Sets the content to be stored in this <code>ContentItem</code>.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../../../../com/ibm/content/binder/model/ContentItem.html#setMimeType(java.lang.String)">setMimeType</A></B>(java.lang.String mimeType)</CODE><BR> Sets the mime type of the content stored in this <code>ContentItem</code>.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../../../../com/ibm/content/binder/model/ContentItem.html#setObject(java.lang.Object)">setObject</A></B>(java.lang.Object object)</CODE><BR> Convenience method that saves an Object inside this <code>ContentItem</code> by serializing it.</TD></TR></TABLE> <A NAME="methods_inherited_from_class_com.ibm.content.binder.model.ContentReference"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -