Searched refs:authFile (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DDefaultAuthenticator.java52 private File authFile = new File(defaultAuthfile); field in class:DefaultAuthenticator
61 this.authFile = authfile;
65 if(!authFile.exists()){
67 error(new SAXParseException(WscompileMessages.WSIMPORT_AUTH_FILE_NOT_FOUND(authFile.getCanonicalPath(), defaultAuthfile), null));
69 error(new SAXParseException(WscompileMessages.WSIMPORT_FAILED_TO_PARSE(authFile,e.getMessage()), null));
74 if(!authFile.canRead()){
75 error(new SAXParseException("Authorization file: "+authFile + " does not have read permission!", null));
96 errReceiver.info(new SAXParseException(WscompileMessages.WSIMPORT_READING_AUTH_FILE(authFile), null));
100 in = new BufferedReader(new InputStreamReader(new FileInputStream(authFile), "UTF-8"));
105 error(new SAXParseException(WscompileMessages.WSIMPORT_AUTH_FILE_NOT_FOUND(authFile, defaultAuthfil
[all...]
H A DWsimportOptions.java104 public File authFile; field in class:WsimportOptions
251 authFile = new File(authfile);
H A DWsimportTool.java169 //if(options.authFile != null)
170 Authenticator.setDefault(new DefaultAuthenticator(receiver, options.authFile));

Completed in 88 milliseconds