Show / Hide Table of Contents

Class JavaMigrationDeployedApplicationWorkItemDetails

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

Inheritance
object
WorkItemDetails
JavaMigrationDeployedApplicationWorkItemDetails
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 JavaMigrationDeployedApplicationWorkItemDetails : WorkItemDetails

Properties

DeployedApplicationInstallationKey

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

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

DeployedApplicationInstallationPath

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

The full path on which deployed application installation was detected.

DeployedApplicationKey

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

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

Remarks

Required

DeployedApplicationName

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

The deployed 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