- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getTypeText (0.09 sec)
-
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
"8, Unknown" }) @DisplayName("getType and getTypeText cover all types") void testGetTypeAndText(int type, String text) { byte[] ident = new byte[] { 0, 0, 0, 0, 0, 5 }; SID sid = new SID(buildSidT((byte) 1, ident, 42), type, "DOM", "acct", false); assertEquals(type, sid.getType()); assertEquals(text, sid.getTypeText()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
* Consider the following output of {@code examples/SidLookup.java}: * * <pre> * toString: S-1-5-21-4133388617-793952518-2001621813-512 * toDisplayString: WNET\Domain Admins * getType: 2 * getTypeText: Domain group * getDomainName: WNET * getAccountName: Domain Admins * </pre> * * * <p>This section is intended for internal use.</p> */ public class SID extends rpc.sid_t implements jcifs.SID {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
*/ @Test void testGetTypeText() { rpc.sid_t rpcSid = new rpc.sid_t(); SID sid = new SID(rpcSid, SID.SID_TYPE_DOM_GRP, null, null, false); assertEquals("Domain group", sid.getTypeText()); } /** * Test the unwrap method. * * @throws SmbException if the SID string is invalid */ @Test void testUnwrap() throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* <p> * Consider the following output of {@code examples/SidLookup.java}: * <pre> * toString: S-1-5-21-4133388617-793952518-2001621813-512 * toDisplayString: WNET\Domain Admins * getType: 2 * getTypeText: Domain group * getDomainName: WNET * getAccountName: Domain Admins * </pre> */ public class SID extends rpc.sid_t { /** * SID type indicating no type information. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0)