Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOptions (0.71 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcBinding.java

    
        /**
         * @return the proto
         */
        public String getProto () {
            return this.proto;
        }
    
    
        /**
         * @return the options
         */
        public Map<String, Object> getOptions () {
            return this.options;
        }
    
    
        /**
         * @return the server
         */
        public String getServer () {
            return this.server;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

                }
                throw new DcerpcException("Bad endpoint: " + endpoint);
            }
            if (options == null)
                options = new HashMap();
            options.put(key, val);
        }
        Object getOption(String key) {
            if (key.equals("endpoint"))
                return endpoint;
            if (options != null)
                return options.get(key);
            return null;
        }
    
        public String toString() {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.2K bytes
    - Viewed (0)
Back to top