MetadataDetailsインタフェース
MetadataDetails
インタフェースはoracle.integration.console.metadata.model.share
パッケージの一部であり、soaComposerTemplates.jar
ファイルで定義されます。
次に示すように、MetadataDetails
インタフェースは3つのメソッドを定義します。
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; }