Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Proposed SDD Features and Code Structure"

(New page: = Overview = The initial deliverable in support of the Solution Deployment Descriptor ([http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=sdd SDD]) will focus on the CL-1 leve...)
 
(Fixed formatting)
Line 1: Line 1:
 
 
 
= Overview =
 
= Overview =
 
The initial deliverable in support of the Solution Deployment Descriptor  ([http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=sdd SDD]) will focus on the CL-1 level of the specification. The code will consist of support for tooling to create the SDD, as well as a runtime to process it.
 
The initial deliverable in support of the Solution Deployment Descriptor  ([http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=sdd SDD]) will focus on the CL-1 level of the specification. The code will consist of support for tooling to create the SDD, as well as a runtime to process it.
Line 10: Line 8:
 
Common
 
Common
  
org.eclipse.cosmos.me.deployment.common.sdd
+
* org.eclipse.cosmos.me.deployment.common.sdd
org.eclipse.cosmos.me.deployment.common.sdd.validation
+
* org.eclipse.cosmos.me.deployment.common.sdd.validation
  
 
Tooling
 
Tooling
  
org.eclipse.cosmos.me.deployment.tooling.sdd
+
* org.eclipse.cosmos.me.deployment.tooling.sdd
org.eclipse.cosmos.me.deployment.tooling.sdd.btg (build time generator)
+
* org.eclipse.cosmos.me.deployment.tooling.sdd.btg (build time generator)
  
 +
Runtime
  
Runtime
+
* org.eclipse.cosmos.me.deployment.runtime.sdd
org.eclipse.cosmos.me.deployment.runtime.sdd
+
* org.eclipse.cosmos.me.deployment.runtime.sdd.profile
org.eclipse.cosmos.me.deployment.runtime.sdd.profile
+
* org.eclipse.cosmos.me.deployment.runtime.sdd.<profile name, e.g. SML, CIM>
org.eclipse.cosmos.me.deployment.runtime.sdd.<profile name, e.g. SML, CIM>
+
* org.eclipse.cosmos.me.deployment.runtime.repository
org.eclipse.cosmos.me.deployment.runtime.repository
+

Revision as of 13:10, 13 February 2008

Overview

The initial deliverable in support of the Solution Deployment Descriptor (SDD) will focus on the CL-1 level of the specification. The code will consist of support for tooling to create the SDD, as well as a runtime to process it.


Proposed CVS Structure

Some initial work has been done by SAS and IBM which is a candidate for an initial contribution to the COSMOS project. This code will be evaluated and if accepted will be contributed following the Eclipse guidelines. The work will be performed in the Management Enablement component of COSMOS. The following structure has been proposed for the COSMOS CVS.

Common

  • org.eclipse.cosmos.me.deployment.common.sdd
  • org.eclipse.cosmos.me.deployment.common.sdd.validation

Tooling

  • org.eclipse.cosmos.me.deployment.tooling.sdd
  • org.eclipse.cosmos.me.deployment.tooling.sdd.btg (build time generator)

Runtime

  • org.eclipse.cosmos.me.deployment.runtime.sdd
  • org.eclipse.cosmos.me.deployment.runtime.sdd.profile
  • org.eclipse.cosmos.me.deployment.runtime.sdd.<profile name, e.g. SML, CIM>
  • org.eclipse.cosmos.me.deployment.runtime.repository

Back to the top