Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 239 for IDENTIFIER (0.1 sec)

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

         * Constructs a new PacSidAttributes instance.
         *
         * @param id the Security Identifier
         * @param attributes the attribute flags associated with the SID
         */
        public PacSidAttributes(final SID id, final int attributes) {
            this.id = id;
            this.attributes = attributes;
        }
    
        /**
         * Gets the Security Identifier.
         *
         * @return the SID associated with this instance
         */
    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/org/codelibs/fess/app/web/go/GoForm.java

     *
     */
    public class GoForm {
    
        /**
         * Default constructor for GoForm.
         */
        public GoForm() {
            super();
        }
    
        /**
         * Document identifier for the target document to redirect to.
         * This is required and limited to 100 characters.
         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

        /** Type identifier for character mapping dictionaries. */
        private static final String MAPPING = "mapping";
    
        /** List of character mapping items loaded from the mapping file. */
        List<CharMappingItem> mappingItemList;
    
        /**
         * Constructs a new CharMappingFile instance.
         *
         * @param id the unique identifier for this mapping file
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

         */
        private lsarpc() {
            // Utility class
        }
    
        /**
         * Returns the syntax identifier for LSA RPC.
         *
         * @return the syntax identifier string
         */
        /**
         * Returns the RPC syntax identifier for LSA RPC interface.
         *
         * @return the RPC syntax string
         */
        public static String getSyntax() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

        }
    
        /**
         * Retrieve a single character mapping entry by ID for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param id identifier of the mapping entry
         * @return JSON response containing the mapping entry
         */
        // GET /api/admin/dict/mapping/setting/{dictId}/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/Constants.java

        /** Basic authentication type identifier. */
        public static final String BASIC = "BASIC";
    
        /** Digest authentication type identifier. */
        public static final String DIGEST = "DIGEST";
    
        /** NTLM authentication type identifier. */
        public static final String NTLM = "NTLM";
    
        /** Form-based authentication type identifier. */
        public static final String FORM = "FORM";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ArtifactCoordinates {
        /**
         * {@return the group identifier of the artifact}.
         */
        @Nonnull
        String getGroupId();
    
        /**
         * {@return the identifier of the artifact}.
         */
        @Nonnull
        String getArtifactId();
    
        /**
         * Returns the classifier of the artifact.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * <p>
         * Shortcut for {@code DependencyScope.forId(...)} with a verification that the given identifier exists.
         *
         * @param id the identifier of the scope (case-sensitive)
         * @return the scope for the given identifier (never null)
         * @throws IllegalArgumentException if the given identifier is not a known scope
         *
         * @see org.apache.maven.api.DependencyScope#forId(String)
         */
        @Nonnull
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/EditForm.java

        }
    
        /**
         * The unique identifier of the Kuromoji dictionary entry being edited.
         * This is a required field for identifying which dictionary entry to update.
         */
        @Required
        @ValidateTypeFailure
        public Long id;
    
        /**
         * Returns a display-friendly identifier combining the dictionary ID and entry ID.
         * This method creates a composite identifier for UI display purposes.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/rpc.java

                        buffer[_i] = (short) _src.dec_ndr_short();
                    }
                }
            }
        }
    
        /**
         * Security Identifier (SID) structure for DCE/RPC.
         * Represents a Windows security identifier used in RPC operations.
         */
        public static class sid_t extends NdrObject {
    
            /**
             * Default constructor for sid_t.
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top