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

There is a newer version: 1.6
Show newest version
package $package;

import javax.inject.Inject;

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

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

    @Inject
    ${impl}(
            HttpParameterFactory httpParameterFactory,
            @DefaultDateFormat String defaultDateFormat) {
        this.defaultDateFormat = defaultDateFormat;
        this.httpParameterFactory = httpParameterFactory;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy