Class VecExternalMappingSpecification

All Implemented Interfaces:
Identifiable, ModifiableIdentifiable, HasCustomProperties<VecCustomProperty>, HasDescription<VecAbstractLocalizedString>, HasIdentification, HasModifiableIdentification, Visitable, Serializable

public class VecExternalMappingSpecification extends VecSpecification implements Serializable, Visitable

AnExternalMappingSpecificationis used to define a mapping between an external data source (represented by the referencedmappedDocument) and the content of a VEC file.

Java class for ExternalMappingSpecification complex type.

The following schema fragment specifies the expected content contained within this class.


 <complexType name="ExternalMappingSpecification">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}Specification">
       <sequence>
         <element name="MappedDocument" type="{http://www.w3.org/2001/XMLSchema}IDREF"/>
         <element name="Mappings" type="{http://www.prostep.org/ecad-if/2011/vec}ExternalMapping" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • mappedDocument

      protected VecDocumentVersion mappedDocument

      Reference to theDocumentVersionthat represents the external data source that connected to the VEC content by theExternalMappingSpecification.

    • mappings

      protected List<VecExternalMapping> mappings

      Specifies the mappings of individual element.

  • Constructor Details

    • VecExternalMappingSpecification

      public VecExternalMappingSpecification()
  • Method Details

    • getMappedDocument

      public VecDocumentVersion getMappedDocument()
      Gets the value of the mappedDocument property.

      Reference to theDocumentVersionthat represents the external data source that connected to the VEC content by theExternalMappingSpecification.

      Returns:
      possible object is Object
    • setMappedDocument

      public void setMappedDocument(VecDocumentVersion value)
      Sets the value of the mappedDocument property.
      Parameters:
      value - allowed object is Object
      See Also:
    • getMappings

      public List<VecExternalMapping> getMappings()
      Gets the value of the mappings property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a set method for the mappings property.

      For example, to add a new item, do as follows:

          getMappings().add(newItem);
       

      Objects of the following type(s) are allowed in the list VecExternalMapping

      Specifies the mappings of individual element.

      Returns:
      The value of the mappings property.
    • accept

      public <R, E extends Throwable> R accept(Visitor<R,E> aVisitor) throws E
      Specified by:
      accept in interface Visitable
      Throws:
      E extends Throwable