Class XMLProjectWriter

java.lang.Object
org.eclipse.persistence.sessions.factories.XMLProjectWriter

public class XMLProjectWriter extends Object

Purpose: Write the deployment XML (object persistence meta-data) for the TopLink project instance to a file. Note the TopLink deployment XML format has change as of the OracleAS TopLink 10g (10.0.3) release to use XML schema.

Author:
James Sutherland
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default constructor.
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    write(String fileName, Project project)
    INTERNAL: This should not be used.
    static void
    write(String fileName, Project project, Writer writer)
    INTERNAL: This should not be used.
    static void
    write(Project project, Writer writer)
    PUBLIC: Given the writer, and a project, this writes out the deployment XML file storing the project's descriptor and mapping information.
    static void
    write(Project project, String fileName)
    PUBLIC: Given the file name (including path), and a project, this writes out the deployment XML file storing the project's descriptor and mapping information.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • XMLProjectWriter

      public XMLProjectWriter()
      Default constructor.
  • Method Details

    • write

      public static void write(Project project, String fileName)
      PUBLIC: Given the file name (including path), and a project, this writes out the deployment XML file storing the project's descriptor and mapping information.
      Parameters:
      fileName - file to write to (including path)
      project - the project instance to write
    • write

      public static void write(Project project, Writer writer)
      PUBLIC: Given the writer, and a project, this writes out the deployment XML file storing the project's descriptor and mapping information.
      Parameters:
      writer - writer to writer to
      project - the project instance to write
    • write

      public static void write(String fileName, Project project)
      INTERNAL: This should not be used.
      See Also:
    • write

      public static void write(String fileName, Project project, Writer writer)
      INTERNAL: This should not be used.
      See Also: