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

org.jresearch.commons.gwt.client.service.ServiceTools Maven / Gradle / Ivy

package org.jresearch.commons.gwt.client.service;

import javax.annotation.Nonnull;

import org.jresearch.commons.gwt.shared.loader.GxtLoadConfig;
import org.jresearch.commons.gwt.shared.loader.GxtLoadConfigBean;
import org.jresearch.commons.gwt.shared.loader.LoadConfig;
import org.jresearch.commons.gwt.shared.loader.LoadConfigBean;
import org.jresearch.commons.gwt.shared.service.IReadDomainServiceAsync;

/** Helper class to create data loader by remote service */
public class ServiceTools> extends CustomServiceTools, M, S> {

	public ServiceTools(@Nonnull final S service) {
		super(service);
	}

	@Override
	protected GxtLoadConfig createLoadConfig() {
		final LoadConfig jrsConfig = new LoadConfigBean();
		return new GxtLoadConfigBean<>(jrsConfig);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy