AI-generated Key Takeaways
- 
          
SafeBrowsingThreat is a class used to represent threats detected for a given URI.
 - 
          
It is used as input and output for the lookupUri method in SafetyNetClient.
 - 
          
Threat types include TYPE_POTENTIALLY_HARMFUL_APPLICATION and TYPE_SOCIAL_ENGINEERING.
 - 
          
The getThreatType method retrieves the type of threat for a SafeBrowsingThreat object.
 
A threat of interest used as input to 
      lookupUri(String, String, int...) and returned as output if these threats are
      detected for the input URI to 
      lookupUri(String, String, int...).
Constant Summary
| int | TYPE_POTENTIALLY_HARMFUL_APPLICATION | This threat type will match URLs of pages that are flagged as containing potentially harmful applications. | 
| int | TYPE_SOCIAL_ENGINEERING | This threat type will match URLs of pages that are flagged as containing social engineering threats. | 
Public Method Summary
| int | 
                 
                  
                  getThreatType()
                   
              
                    Gets the threat type for this threat.
                   
                 | 
            
Inherited Method Summary
Constants
public static final int TYPE_POTENTIALLY_HARMFUL_APPLICATION
This threat type will match URLs of pages that are flagged as containing potentially harmful applications.
public static final int TYPE_SOCIAL_ENGINEERING
This threat type will match URLs of pages that are flagged as containing social engineering threats.
Public Methods
public int getThreatType ()
Gets the threat type for this threat.