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

com.gwtplatform.dispatch.rest.rebind.resource.Resource.vm Maven / Gradle / Ivy

The newest version!
package $package;

import com.gwtplatform.dispatch.rest.client.core.StaticParametersFactory;
import com.gwtplatform.dispatch.rest.client.core.parameters.HttpParameterFactory;
#foreach ($import in $imports)
import $import;
#end

public class $impl implements $resourceType {
    private final HttpParameterFactory httpParameterFactory;
    private final String defaultDateFormat;

    ${impl}() {
        this.defaultDateFormat = StaticParametersFactory.getDefaultDateFormat();
        this.httpParameterFactory = StaticParametersFactory.getHttpParameterFactory();
    }

#foreach ($method in $methods)
$method.output
#end
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy