Searched defs:WindowsSecurityDescriptor (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsSecurityDescriptor.java42 class WindowsSecurityDescriptor { class
93 private static final WindowsSecurityDescriptor NULL_DESCRIPTOR =
94 new WindowsSecurityDescriptor();
103 private WindowsSecurityDescriptor() { method in class:WindowsSecurityDescriptor
112 private WindowsSecurityDescriptor(List<AclEntry> acl) throws IOException { method in class:WindowsSecurityDescriptor
332 static WindowsSecurityDescriptor create(List<AclEntry> acl)
335 return new WindowsSecurityDescriptor(acl);
344 static WindowsSecurityDescriptor fromAttribute(FileAttribute<?>... attrs)
347 WindowsSecurityDescriptor sd = NULL_DESCRIPTOR;
356 sd = new WindowsSecurityDescriptor(ac
[all...]

Completed in 531 milliseconds