1 28 29 package com.caucho.vfs; 30 31 import java.util.Map ; 32 33 36 public class TcpsPath extends TcpPath { 37 public TcpsPath(TcpPath root, String userPath, 38 Map <String ,Object > newAttributes, 39 String host, int port) 40 { 41 super(root, userPath, newAttributes, host, port); 42 } 43 44 protected TcpPath create(TcpPath root, 45 String userPath, Map <String ,Object > newAttributes, 46 String host, int port) 47 { 48 return new TcpsPath(root, userPath, newAttributes, host, port); 49 } 50 51 public String getScheme() 52 { 53 return "tcps"; 54 } 55 56 public String toString() 57 { 58 return getURL(); 59 } 60 } 61 | Popular Tags |