Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PacGroup (0.08 sec)

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

     * Contains a group SID and associated attributes.
     */
    public class PacGroup {
    
        private final SID id;
        private final int attributes;
    
        /**
         * Constructs a PAC group entry.
         * @param id the group's Security Identifier (SID)
         * @param attributes the group membership attributes
         */
        public PacGroup(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.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/pac/PacGroupTest.java

    import jcifs.smb.SID;
    
    /**
     * Tests for the {@link PacGroup} class.
     */
    class PacGroupTest {
    
        private SID mockSid;
        private PacGroup pacGroup;
        private final int attributes = 42;
    
        @BeforeEach
        void setUp() {
            // Mock the SID object
            mockSid = mock(SID.class);
            pacGroup = new PacGroup(mockSid, attributes);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacLogonInfo.java

                // Groups data
                PacGroup[] groups = {};
                if (groupPointer != 0) {
                    final int realGroupCount = pacStream.readInt();
                    if (realGroupCount != groupCount) {
                        throw new PACDecodingException("Invalid number of groups in PAC expect" + groupCount + " have " + realGroupCount);
                    }
                    groups = new PacGroup[groupCount];
    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