![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.connectors.airwatch.config.AppConfigurations Maven / Gradle / Ivy
/*
* Copyright © 2018 VMware, Inc. All Rights Reserved.
* SPDX-License-Identifier: BSD-2-Clause
*/
package com.vmware.connectors.airwatch.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* Created by harshas on 01/31/18.
*/
@ConfigurationProperties(prefix = "airwatch")
@Component
public class AppConfigurations {
private List apps;
public List getApps() {
return apps;
}
public void setApps(List apps) {
this.apps = apps;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy