Class ObjectFactory

java.lang.Object
com.genologics.ri.file.ObjectFactory

public class ObjectFactory extends Object
Factory class for creating instances of JAXB content classes defined in the com.genologics.ri.file package.

This class is required by JAXB (Java Architecture for XML Binding) and provides factory methods for instantiating JAXB-managed classes and elements within this package. Each factory method constructs new instances of schema-derived classes that represent XML content structures.

  • Constructor Details

    • ObjectFactory

      public ObjectFactory()
      Creates a new ObjectFactory that can be used to create new instances of schema-derived classes for package: com.genologics.ri.file.
  • Method Details

    • createDetails

      public ClarityFileBatchFetchResult createDetails()
      Creates a new instance of ClarityFileBatchFetchResult.
      Returns:
      A new ClarityFileBatchFetchResult instance.
    • createFile

      public ClarityFile createFile()
      Creates a new instance of ClarityFile.
      Returns:
      A new ClarityFile instance.
    • createFiles

      public ClarityFiles createFiles()
      Creates a new instance of ClarityFiles.
      Returns:
      A new ClarityFiles instance.
    • createFileLink

      public FileLink createFileLink()
      Creates a new instance of FileLink.
      Returns:
      A new FileLink instance.
    • createDetails

      Creates a JAXBElement wrapping a ClarityFileBatchFetchResult instance. This method is used by JAXB for marshalling/unmarshalling the details element.
      Parameters:
      value - The ClarityFileBatchFetchResult instance to wrap.
      Returns:
      A JAXBElement containing the provided value.
    • createFile

      public JAXBElement<ClarityFile> createFile(ClarityFile value)
      Creates a JAXBElement wrapping a ClarityFile instance. This method is used by JAXB for marshalling/unmarshalling the file element.
      Parameters:
      value - The ClarityFile instance to wrap.
      Returns:
      A JAXBElement containing the provided value.
    • createFiles

      public JAXBElement<ClarityFiles> createFiles(ClarityFiles value)
      Creates a JAXBElement wrapping a ClarityFiles instance. This method is used by JAXB for marshalling/unmarshalling the files element.
      Parameters:
      value - The ClarityFiles instance to wrap.
      Returns:
      A JAXBElement containing the provided value.