Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 354 for represented (0.13 sec)

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

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.pac;
    
    import jcifs.smb.SID;
    
    /**
     * Represents a Security Identifier (SID) with associated attributes within a PAC structure.
     * This class encapsulates a SID and its attribute flags as used in Kerberos PAC data.
     */
    public class PacSidAttributes {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtlmChallenge.java

     */
    
    package jcifs.smb1.smb1;
    
    import java.io.Serializable;
    
    import jcifs.smb1.UniAddress;
    import jcifs.smb1.util.Hexdump;
    
    /**
     * Represents an NTLM authentication challenge in SMB1 protocol.
     */
    public final class NtlmChallenge implements Serializable {
    
        /**
         * The NTLM challenge bytes received from the server.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/InstallBody.java

    package org.codelibs.fess.app.web.api.admin.plugin;
    
    import org.lastaflute.web.validation.Required;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Request body for plugin installation API.
     * This class represents the data structure for installing a plugin
     * through the admin REST API.
     */
    public class InstallBody {
        /** Name of the plugin to install (required, max 100 characters) */
        @Required
        @Size(max = 100)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacGroup.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.pac;
    
    import jcifs.smb.SID;
    
    /**
     * Represents a group membership entry in PAC logon information.
     * Contains a group SID and associated attributes.
     */
    public class PacGroup {
    
        private final SID id;
        private final int attributes;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Tools.java

     * under the License.
     */
    package org.apache.maven.api.cli;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    
    /**
     * Represents most common tools supported by CLIng.
     *
     * @since 4.0.0
     */
    @Immutable
    @Experimental
    public final class Tools {
        private Tools() {}
    
        public static final String MVN_CMD = "mvn";
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * Each instance identifies an artifact or version range of artifacts in the Maven repository system.</p>
     *
     * <p>{@link org.apache.maven.api.Artifact} instances represent artifacts in the repository.
     * They are created when <dfn>resolving</dfn> an {@code ArtifactCoordinates} object. Resolving is the process
     * that selects a particular version and downloads the artifact into the local repository.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 05 14:29:21 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/ndr/NdrSmall.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.dcerpc.ndr;
    
    /**
     * Represents an NDR small integer (1 byte unsigned) for DCE/RPC communication.
     * This class encapsulates a single byte value (0-255) in NDR format.
     */
    public class NdrSmall extends NdrObject {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

         *
         * @param type1 The Type-1 message which this represents a response to.
         */
        public Type2Message(final Type1Message type1) {
            this(type1, null, null);
        }
    
        /**
         * Creates a Type-2 message in response to the given Type-1 message.
         *
         * @param type1 The Type-1 message which this represents a response to.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

     */
    package org.codelibs.fess.app.web.base.login;
    
    import org.lastaflute.web.login.credential.LoginCredential;
    
    /**
     * SPNEGO authentication credential implementation.
     *
     * This class represents login credentials obtained through SPNEGO (Security Provider
     * Negotiation Protocol) authentication. It contains the username extracted from the
     * SPNEGO authentication process, typically from a Kerberos ticket.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/nego/NegotiateContextRequest.java

     */
    package jcifs.internal.smb2.nego;
    
    import jcifs.Encodable;
    
    /**
     * SMB2 Negotiate Context request data structure.
     *
     * This class represents negotiate contexts used in SMB 3.1.1
     * for capability negotiation and security enhancements.
     *
     * @author mbechler
     */
    public interface NegotiateContextRequest extends Encodable {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top