src/java.security.jgss/share/classes/javax/security/auth/kerberos/ServicePermission.java
changeset 58831 b026a43e1809
parent 47216 71c04702a3d5
equal deleted inserted replaced
58830:fa0b9f9c597a 58831:b026a43e1809
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   236 
   236 
   237         if (! (obj instanceof ServicePermission))
   237         if (! (obj instanceof ServicePermission))
   238             return false;
   238             return false;
   239 
   239 
   240         ServicePermission that = (ServicePermission) obj;
   240         ServicePermission that = (ServicePermission) obj;
   241         return ((this.mask & that.mask) == that.mask) &&
   241         return (this.mask == that.mask) &&
   242             this.getName().equals(that.getName());
   242             this.getName().equals(that.getName());
   243 
   243 
   244 
   244 
   245     }
   245     }
   246 
   246