All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aeontronix.anypointsdk.amc.application.ExchangeApplicationSource Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta35
Show newest version
/*
 * Copyright (c) 2023. Aeontronix Inc
 */

package com.aeontronix.anypointsdk.amc.application;

import java.io.File;

public class ExchangeApplicationSource extends ApplicationSource {
    public ExchangeApplicationSource(String groupId, String artifactId, String version) {
        applicationIdentifier = new ApplicationIdentifier(groupId, artifactId, version);
    }

    @Override
    public ApplicationIdentifier getApplicationIdentifier() {
        return applicationIdentifier;
    }

    @Override
    public File getFile() {
        throw new RuntimeException("Not supported at this time");
    }

    @Override
    public String getFilename() {
        throw new RuntimeException("Not supported at this time");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy