![JAR search and dependency download from the Maven repository](/logo.png)
com.aeontronix.anypointsdk.amc.application.deployment.ApplicationIntegrations 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 ApplicationIntegrations {
@JsonProperty("services")
private Services services;
public ApplicationIntegrations() {
}
public ApplicationIntegrations(Services services) {
this.services = services;
}
public Services getServices() {
return services;
}
public void setServices(Services services) {
this.services = services;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy