Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getSessionId (0.09 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

                    request.retainPayload();
    
                    try {
                        response = trans.send(request, null, EnumSet.of(RequestParam.RETAIN_PAYLOAD));
                        sessId = response.getSessionId();
                    }
                    catch ( SmbAuthException sae ) {
                        throw sae;
                    }
                    catch ( SmbException e ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                        final List<String> list = new ArrayList<>();
                        entity.getCrawlingInfo().ifPresent(crawlingInfo -> {
                            addToList(list, crawlingInfo.getSessionId());
                            addToList(list, crawlingInfo.getCreatedTime());
                        });
                        // TODO
                        if (!entity.getCrawlingInfo().isPresent()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

    
        /**
         * @return the status
         */
        public final int getStatus () {
            return this.status;
        }
    
    
        /**
         * @return the sessionId
         */
        public long getSessionId () {
            return this.sessionId;
        }
    
    
        /**
         * @param sessionId
         *            the sessionId to set
         */
        @Override
        public final void setSessionId ( long sessionId ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
Back to top