src/main/java/com/amazon/redshift/plugin/SamlCredentialsProvider.java [783:793]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected boolean isText(String inputTag)
    {
    		String typeVal = getValueByKey(inputTag, "type");
    		if(typeVal == null
    				|| typeVal.length() == 0)
    		{
    			typeVal = getValueByKeyWithoutQuotesAndValueInSingleQuote(inputTag, "type");
    		}
    		
        return "text".equals(typeVal);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazon/redshift/plugin/SamlCredentialsProvider.java [795:805]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected boolean isPassword(String inputTag)
    {
  		String typeVal = getValueByKey(inputTag, "type");
  		if(typeVal == null
  				|| typeVal.length() == 0)
  		{
  			typeVal = getValueByKeyWithoutQuotesAndValueInSingleQuote(inputTag, "type");
  		}
  		
      return "password".equals(typeVal);
    }    
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



