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

META-INF.templates.java.write-uri-attribute.ftl Maven / Gradle / Ivy

The newest version!
<#if value.literal>
  ${responseWriterVariable}.writeURIAttribute("${attributeName}",${value},null);
<#else>
   {
      ${value.type} value = ${value};
      <#if value.type == "String" >
      if(null != value && value.length()>0) {
      <#else>
      if(null != value && value.toString().length()>0) {
      
        ${responseWriterVariable}.writeURIAttribute("${attributeName}",value,null);
      }
   }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy