Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SamrRidWithAttribute (0.06 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/samrTest.java

            }
        }
    
        @Nested
        @DisplayName("SamrRidWithAttribute Tests")
        class SamrRidWithAttributeTests {
    
            @Test
            @DisplayName("Should encode RID with attribute correctly")
            void testEncode() throws NdrException {
                // Given: RID with attribute
                samr.SamrRidWithAttribute ridWithAttribute = new samr.SamrRidWithAttribute();
                ridWithAttribute.rid = 100;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/samr.java

         * Represents a relative identifier (RID) with associated attribute flags.
         */
        public static class SamrRidWithAttribute extends NdrObject {
    
            /**
             * Default constructor for SamrRidWithAttribute.
             */
            public SamrRidWithAttribute() {
                // Default constructor
            }
    
            /** The relative identifier (RID) */
            public int rid;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

         * Represents a relative identifier (RID) with associated attribute flags.
         */
        public static class SamrRidWithAttribute extends NdrObject {
    
            /**
             * Default constructor for SamrRidWithAttribute.
             */
            public SamrRidWithAttribute() {
                // Default constructor
            }
    
            /** The relative identifier (RID) */
            public int rid;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

            }
        }
    
        @Nested
        @DisplayName("SamrRidWithAttribute Tests")
        class SamrRidWithAttributeTests {
    
            @Test
            @DisplayName("Should encode RID with attribute correctly")
            void testEncode() throws NdrException {
                // Given: RID with attribute
                samr.SamrRidWithAttribute ridWithAttribute = new samr.SamrRidWithAttribute();
                ridWithAttribute.rid = 100;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
Back to top