1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<!-- http://findbugs.sourceforge.net/bugDescriptions.html -->
<LastVersion value="-1" relOp="NEQ"/>
<!-- The following have not yet been investigated -->
<!-- The following are known to be bugs and should be fixed -->
<!-- The following are known to NOT be bugs and should not be fixed -->
<And>
<Bug pattern="DM_DEFAULT_ENCODING"/>
<!-- Reliance on default encoding -->
<Class name="com.google.api.client.extensions.java6.auth.oauth2.AbstractPromptReceiver"/>
</And>
<And>
<Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>
<!-- Class doesn't override equals in superclass -->
<Class name="com.google.api.client.auth.oauth2.AuthorizationCodeResponseUrl"/>
</And>
<And>
<Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>
<!-- Class doesn't override equals in superclass -->
<Class name="com.google.api.client.auth.oauth2.AuthorizationRequestUrl"/>
</And>
<And>
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2"/>
<!-- May expose internal representation by returning reference to mutable object -->
<!-- May expose internal representation by incorporating reference to mutable object -->
<Class name="com.google.api.client.auth.jsontoken.JsonWebSignature"/>
</And>
<And>
<Class name="com.google.api.client.auth.security.PrivateKeys"/><!--Deprecated Class -->
</And>
<And>
<Package name="com.google.api.client.auth.oauth"/>
</And>
<And>
<Bug pattern="BETA_CLASS_USAGE,BETA_FIELD_USAGE"/>
<Class name="com.google.api.client.auth.oauth2.AuthorizationCodeFlow" />
</And>
<And>
<Bug pattern="DM_STRING_CTOR"/>
<Class name="com.google.api.client.auth.oauth2.BearerToken$AuthorizationHeaderAccessMethod" />
</And>
<And>
<Bug pattern="DM_STRING_CTOR"/>
<Class name="com.google.api.client.extensions.servlet.auth.AbstractCallbackServlet" />
</And>
<And>
<Bug pattern="DM_STRING_CTOR"/>
<Class name="com.google.api.client.extensions.java6.auth.oauth2.AuthorizationCodeInstalledApp" />
</And>
</FindBugsFilter>
|