The MetadataDetails Interface
The MetadataDetails
interface is a part of the oracle.integration.console.metadata.model.share
package and is defined in the soaComposerTemplates.jar
file.
The MetadataDetails
interface defines three methods, as shown below:
public interface MetadataDetails { /** * Retrieve the details of the metadata document * @return document in string format. */ String getDocument(); /** * Get related document. */ String getRelatedDocument(final RelatedMetadataPath relatedPath); /** * Update the metadata document. * @param doc represents the updated document. */ void setDocument(String doc) throws Exception; }