Class BcsDocumentKeywordInfo

  • All Implemented Interfaces:
    dm.soap.DmSoapConstants

    public class BcsDocumentKeywordInfo
    extends TechDocBcsService
    This class holds all of the information about about a document keyword. Typically we would just return a keyword name and value in normal SOAP but we need in ID driven mechanism for SharePoint BCS.
    • Constructor Detail

      • BcsDocumentKeywordInfo

        public BcsDocumentKeywordInfo​(int docID,
                                      java.lang.String docKeywordID,
                                      java.lang.String docNumber,
                                      java.lang.String keywordName,
                                      java.lang.String keywordValue)
        Creates a new instance of BcsDocumentKeywordInfo.
        Parameters:
        docID - The document ID.
        docKeywordID - The virtual/calculated document keyword ID.
        docNumber - The document number.
        keywordName - The name of the keyword.
        keywordValue - The value of the keyword.
      • BcsDocumentKeywordInfo

        public BcsDocumentKeywordInfo​(dm.record.PartialDocumentView document,
                                      dm.record.Keyword keyword,
                                      dm.record.DocumentKeyword documentKeyword)
        Creates a new instance of BcsDocumentKeywordInfo.
        Parameters:
        document - The document.
        keyword - The keyword.
        documentKeyword - The document keyword.
    • Method Detail

      • getDocID

        public int getDocID()
        Returns the ID for the document.
        Returns:
        An int.
      • getDocKeywordID

        public java.lang.String getDocKeywordID()
        Returns the ID for this document keyword.
        Returns:
        An string.
      • getDocNumber

        public java.lang.String getDocNumber()
        Returns the number for the document.
        Returns:
        A string.
      • getKeywordName

        public java.lang.String getKeywordName()
        Returns the name for this document keyword.
        Returns:
        A String object.
      • getKeywordValue

        public java.lang.String getKeywordValue()
        Returns the values for this document keyword.
        Returns:
        A String object.