Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PacSidAttributes (0.05 sec)

  1. src/main/java/jcifs/pac/PacSidAttributes.java

     */
    public class PacSidAttributes {
    
        private final SID id;
        private final int attributes;
    
        /**
         * Constructs a new PacSidAttributes instance.
         *
         * @param id the Security Identifier
         * @param attributes the attribute flags associated with the SID
         */
        public PacSidAttributes(final SID id, final int attributes) {
            this.id = id;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/pac/PacSidAttributesTest.java

    class PacSidAttributesTest {
    
        private SID sidMock;
        private PacSidAttributes pacSidAttributes;
        private final int attributes = 12345;
    
        @BeforeEach
        void setUp() {
            // Mock the SID object
            sidMock = mock(SID.class);
            // Create a new PacSidAttributes instance before each test
            pacSidAttributes = new PacSidAttributes(sidMock, attributes);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacLogonInfo.java

                SID domainId = null;
                if (domainIdPointer != 0) {
                    domainId = pacStream.readSid();
                }
    
                // Extra SIDs data
                PacSidAttributes[] extraSidAtts = {};
                if (hasExtraSids && extraSidPointer != 0) {
                    final int realExtraSidCount = pacStream.readInt();
                    if (realExtraSidCount != extraSidCount) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
Back to top