in src/main/java/org/apache/sling/hapi/impl/HApiTypeImpl.java [62:73]
public HApiTypeImpl(String name, String description, String serverUrl, String path, String fqdn, List<String> parameters, Map<String,
HApiProperty> properties, HApiType parent, boolean isAbstract) {
this.name = name;
this.description = description;
this.serverUrl = serverUrl.substring(0, serverUrl.length() - (serverUrl.endsWith("/") ? 1 : 0));
this.path = path;
this.fqdn = fqdn;
this.parameters = parameters;
this.properties = properties;
this.parent = parent;
this.isAbstract = isAbstract;
}