Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getScope (0.14 sec)

  1. src/main/java/jcifs/NetbiosName.java

     * 
     * @author mbechler
     *
     */
    public interface NetbiosName {
    
        /**
         * @return the name
         */
        String getName ();
    
    
        /**
         * @return the scope id
         */
        String getScope ();
    
    
        /**
         * @return the name type
         */
        int getNameType ();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/Name.java

        /**
         * @return the name
         */
        @Override
        public String getName () {
            return this.name;
        }
    
    
        /**
         * @return scope id
         */
        @Override
        public String getScope () {
            return this.scope;
        }
    
    
        /**
         * 
         * @return the name type
         */
        @Override
        public int getNameType () {
            return this.hexCode;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    "no name with type 0x" + Hexdump.toHexString(addr.getNameType(), 2)
                            + ( ( ( addr.getName().getScope() == null ) || ( addr.getName().getScope().isEmpty() ) ) ? " with no scope"
                                    : " with scope " + addr.getName().getScope() )
                            + " for host " + addr.getHostAddress());
            }
        }
    
    
        /**
         * 
         * @param tc
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top