- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 45 for Sid (0.03 sec)
-
src/main/java/jcifs/SID.java
* <p> * Specifically, if the SID has * been resolved and it is not a domain SID or builtin account, * the full DOMAIN\name form of the account will be * returned (e.g. MYDOM\alice or MYDOM\Domain Users). * If the SID has been resolved but it is is a domain SID, * only the domain name will be returned (e.g. MYDOM). * If the SID has been resolved but it is a builtin account,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/SidTest.java
for ( int rid : rids ) { SID sid = new SID(domsid, rid); sid.resolve(getRequiredProperty(TestProperties.TEST_DOMAIN_DC), withTestNTLMCredentials(getContext())); assertEquals(getRequiredProperty(TestProperties.TEST_DOMAIN_SHORT), sid.getDomainName()); assertEquals(jcifs.SID.SID_TYPE_DOM_GRP, sid.getType()); } } @Test
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
} fessConfig = ComponentUtil.getFessConfig(); } public String getAccountId(final SID sid) { final int type = sid.getType(); if (logger.isDebugEnabled()) { try { logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString()); } catch (final Exception e) { // ignore } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:58:21 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacGroup.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
public Trans2FindFirst2Response ( Configuration config ) { super(config, SMB_COM_TRANSACTION2, SmbComTransaction.TRANS2_FIND_FIRST2); } /** * @return the sid */ public final int getSid () { return this.sid; } /** * @return the isEndOfSearch */ public final boolean isEndOfSearch () { return this.isEndOfSearch; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComFindClose2.java
*/ package jcifs.smb1.smb1; class SmbComFindClose2 extends ServerMessageBlock { private int sid; SmbComFindClose2( int sid ) { this.sid = sid; command = SMB_COM_FIND_CLOSE2; } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { writeInt2( sid, dst, dstIndex ); return 2; } int writeBytesWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
} }); sambaHelper.init(); assertEquals("1test user", sambaHelper.getAccountId(USER_SID)); } private static final SID USER_SID = new SID() { @Override public SID getDomainSid() { return null; } @Override public int getRid() { return 0; } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:55:43 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/ACE.java
* "The .NET Developer's Guide to Windows Security" (which is also * available online). * <p> * Direct ACEs are evaluated first in order. The SID of the user performing * the operation and the desired access bits are compared to the SID * and access mask of each ACE. If the SID matches, the allow/deny flags * and access mask are considered. If the ACE is a "deny" * ACE and <i>any</i> of the desired access bits match bits in the access
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
import jcifs.internal.util.SMBUtil; import jcifs.smb.SID; /** * Internal use only * * @internal */ public class SecurityDescriptor implements SecurityInfo { /** * Descriptor type */ private int type; /** * ACEs */ private ACE[] aces; private SID ownerUserSid, ownerGroupSid; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComFindClose2.java
/** * */ public class SmbComFindClose2 extends ServerMessageBlock { private int sid; /** * * @param config * @param sid */ public SmbComFindClose2 ( Configuration config, int sid ) { super(config, SMB_COM_FIND_CLOSE2); this.sid = sid; } @Override protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0)