getObjectUrl<T extends VasatModel<T> > method
Implementation
String getObjectUrl<T extends VasatModel<T>>(T entity) {
String uri;
if (this.config != null && this.config.host != null) {
uri = this.config.host + getUrlPath<T>(entity);
} else {
uri = "";
}
return uri;
}