Esempio n. 1
0
 /**
  * Calls the equivalent of the <code>sdlip.Metadata.getPropertyInfo()</code> method. The caller
  * specifies which "subcollection" or "SDARTS backend" to search. The method returns an SDLIP XML
  * string of doctype &lt;propList&gt;, with the STARTS header &lt;starts:smeta-attributes&gt;
  * embedded inside. See the SDLIP documentation for description of the SDLIP method, and the
  * STARTS documentation for information about the &lt;starts:smeta-attributes&gt; tag
  *
  * @param subcolName which subcollection (aka back-end) of the SDARTS LSP to get property
  *     information about
  * @return an SDLIP XML string of doctype &lt;propList&gt;, with the STARTS header
  *     &lt;starts:smeta-attributes&gt; embedded inside.
  */
 public String getPropertyInfo(String subcolName) throws SDLIPException {
   XMLObject propInfo = new sdlip.xml.dom.XMLObject();
   tm.getPropertyInfo(subcolName, propInfo);
   // return postProcess (propInfo, "propList", true);
   return propInfo.getString();
 }