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

org.alfasoftware.astra.example.target.FooBarCaller Maven / Gradle / Ivy

package org.alfasoftware.astra.example.target;

public class FooBarCaller {

  private final FooBarInterface fooBarInterface;

  FooBarCaller(FooBarInterface fooBarInterface){
    this.fooBarInterface = fooBarInterface;
  }

  void doThing(){
    fooBarInterface.doFoo();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy