- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getApplyToText (0.05 sec)
-
src/main/java/jcifs/internal/dtyp/ACE.java
public boolean isInherited() { return (this.flags & FLAGS_INHERITED) != 0; } @Override public int getFlags() { return this.flags; } @Override public String getApplyToText() { switch (this.flags & (FLAGS_OBJECT_INHERIT | FLAGS_CONTAINER_INHERIT | FLAGS_INHERIT_ONLY)) { case 0x00: return "This folder only"; case 0x03:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
* directories such as 'This folder, subfolder and files'. For * files the text is always 'This object only'. * @return the text describing what this ACE applies to */ public String getApplyToText() { switch (flags & (FLAGS_OBJECT_INHERIT | FLAGS_CONTAINER_INHERIT | FLAGS_INHERIT_ONLY)) { case 0x00: return "This folder only"; case 0x03:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
* directories such as 'This folder, subfolder and files'. For * files the text is always 'This object only'. * * @return descriptive text for the ACE scope */ String getApplyToText(); /** * Returns the flags for this ACE. The <code>isInherited()</code> * method checks the <code>FLAGS_INHERITED</code> bit in these flags. * * @return the ACE flags */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0)