![JAR search and dependency download from the Maven repository](/logo.png)
com.aeontronix.anypointsdk.amc.application.deployment.Jvm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anypoint-sdk Show documentation
Show all versions of anypoint-sdk Show documentation
Anypoint Software Development Toolkit
/*
* Copyright (c) 2023. Aeontronix Inc
*/
package com.aeontronix.anypointsdk.amc.application.deployment;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Jvm {
@JsonProperty
private String args;
public Jvm() {
}
public Jvm(String args) {
this.args = args;
}
public String getArgs() {
return args;
}
public void setArgs(String args) {
this.args = args;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy