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

testservice.test.TestServiceJs2 Maven / Gradle / Ivy

package testservice.test;

import testservice.ITestServiceReferencedInServiceImpl;

import java.util.ServiceLoader;

public class TestServiceJs2 implements ITestService2 {
	@Override
	public String test() {
		String out = "TestServiceJs2";
		for (ITestServiceReferencedInServiceImpl impl : ServiceLoader.load(ITestServiceReferencedInServiceImpl.class)) {
			out += impl.value();
		}

		return out;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy