Show / Hide Table of Contents

Class JavaMigrationWorkItemDetails

The java migration work item details.

Inheritance
object
WorkItemDetails
JavaMigrationWorkItemDetails
Inherited Members
WorkItemDetails.WorkItemType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.JmsutilsService.Models
Assembly: OCI.DotNetSDK.Jmsutils.dll
Syntax
public class JavaMigrationWorkItemDetails : WorkItemDetails

Properties

AnalysisProjectName

Declaration
[Required(ErrorMessage = "AnalysisProjectName is required.")]
[JsonProperty(PropertyName = "analysisProjectName")]
public string AnalysisProjectName { get; set; }
Property Value
Type Description
string

Name of the analysis project.

Remarks

Required

InputApplicationsObjectStoragePaths

Declaration
[Required(ErrorMessage = "InputApplicationsObjectStoragePaths is required.")]
[JsonProperty(PropertyName = "inputApplicationsObjectStoragePaths")]
public string InputApplicationsObjectStoragePaths { get; set; }
Property Value
Type Description
string

Object storage path to the input artifact/s in the form of a serialized array. Example: "[\"/JMS/Utils/myartifacts1.jar\",\"/JMS/Utils/myartifacts2.war\"]"

Remarks

Required

TargetJdkVersion

Declaration
[Required(ErrorMessage = "TargetJdkVersion is required.")]
[JsonProperty(PropertyName = "targetJdkVersion")]
public string TargetJdkVersion { get; set; }
Property Value
Type Description
string

The JDK version against which the migration analysis was performed to identify effort required to move from source JDK.

Remarks

Required

In this article
Back to top