Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PacGroup (0.64 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)
Back to top