Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getExpiration (0.43 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

         *
         * @see jcifs.util.transport.Response#getExpiration()
         */
        @Override
        public Long getExpiration () {
            return this.expiration;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#setExpiration(java.lang.Long)
         */
        @Override
        public void setExpiration ( Long exp ) {
            this.expiration = exp;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 7.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Response.java

         * Set error status
         */
        void error ();
    
    
        /**
         * 
         * @return the message timeout
         */
        Long getExpiration ();
    
    
        /**
         * 
         * @param exp
         *            message timeout
         */
        void setExpiration ( Long exp );
    
    
        /**
         * 
         */
        public void reset ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/DfsReferralData.java

    
        /**
         * @return the replacement path for this referal
         */
        String getPath ();
    
    
        /**
         * @return the expiration time of this entry
         */
        long getExpiration ();
    
    
        /**
         * 
         * @return pointer to next referral, points to self if there is no further referral
         */
        DfsReferralData next ();
    
    
        /**
         * @return the link
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
Back to top