![JAR search and dependency download from the Maven repository](/logo.png)
be.selckin.ws.util.java2php.EndPoint Maven / Gradle / Ivy
package be.selckin.ws.util.java2php;
import be.selckin.ws.util.java2php.php.PhpService;
import be.selckin.ws.util.java2php.php.PhpType;
import java.util.List;
public class EndPoint {
private final List services;
private final List types;
public EndPoint(List services, List types) {
this.services = Utils.sort(services, Utils.SERVICE_COMPARATOR);
this.types = Utils.sort(types, Utils.PHP_TYPE_COMPARATOR);
}
public List getServices() {
return services;
}
public List getTypes() {
return types;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy