Show / Hide Table of Contents

Class JavaMigrationApplicationWorkItemDetails

The java migration work item details for application analysis related information.

Inheritance
object
WorkItemDetails
JavaMigrationApplicationWorkItemDetails
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.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class JavaMigrationApplicationWorkItemDetails : WorkItemDetails

Properties

ApplicationInstallationKey

Declaration
[JsonProperty(PropertyName = "applicationInstallationKey")]
public string ApplicationInstallationKey { get; set; }
Property Value
Type Description
string

The unique key of the application installation of the java migration analysis.

ApplicationInstallationPath

Declaration
[JsonProperty(PropertyName = "applicationInstallationPath")]
public string ApplicationInstallationPath { get; set; }
Property Value
Type Description
string

The full path on which application installation was detected.

ApplicationKey

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

The unique key of the application of the java migration analysis.

Remarks

Required

ApplicationName

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

The application name.

Remarks

Required

TargetJdkVersion

Declaration
[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.

In this article
Back to top