Uses of Class
wt.security.FileAccess

Packages that use FileAccess
com.ptc.core.query.report.client.reportManager   
com.ptc.windchill.explorer.ca.debug.tree   
com.ptc.windchill.explorer.ca.visualization.pview   
com.ptc.wvs.client.pview   
wt.clients.beans.contentholder   
wt.clients.checker   
wt.clients.csm.widgets   
wt.clients.ixb.exp   
wt.clients.ixb.imp   
wt.clients.util   
wt.clients.util.http   
wt.content
content package — Content Handling Service

The content package allows content — files, URL links, and aggregates (multiple pieces of content that behave as a single file — to be associated with business objects. 

wt.security The wt.security package gets jarred into wt/security/security.jar, which is signed so that this package may be used within a security manager, namely the Applet sandbox, to perform operations which are not typically allowed to non-signed code.  Each of the Access subclasses wrap a java.XXX api to give applets access to these operations.  Use the getXXXAccess factory method to retrieve an Access instance to perform these calls.  For example, FileAccess.getFileInputStream() wraps java.io.FileInputStream to give applets the ability to read files on the local system.  Additional prompts are displayed to the user for each of these types of operations (the grant/deny dialog you see when trying to upload/download content) per codebase, so that a "rogue" system can not get a copy of the security.jar and perform out-of-the-sandbox operations silently. 
 

Uses of FileAccess in com.ptc.core.query.report.client.reportManager
 

Fields in com.ptc.core.query.report.client.reportManager declared as FileAccess
private  FileAccess ReportManagerPanel.QmlFileFilter.fileAccess
           
 

Methods in com.ptc.core.query.report.client.reportManager with parameters of type FileAccess
private static String ReportManagerPanel.readStringFromFile(FileAccess fileAccess, File file)
           
private static void ReportManagerPanel.outputStringToFile(FileAccess fileAccess, File file, String string)
           
private  File ReportManagerPanel.getDefaultDirectory(FileAccess fileAccess)
           
 

Constructors in com.ptc.core.query.report.client.reportManager with parameters of type FileAccess
ReportManagerPanel.QmlFileFilter(FileAccess fileAccess)
           
 

Uses of FileAccess in com.ptc.windchill.explorer.ca.debug.tree
 

Fields in com.ptc.windchill.explorer.ca.debug.tree declared as FileAccess
(package private)  FileAccess TypeInstanceTreePanel.fa
           
 

Uses of FileAccess in com.ptc.windchill.explorer.ca.visualization.pview
 

Fields in com.ptc.windchill.explorer.ca.visualization.pview declared as FileAccess
private static FileAccess PViewUtilities.fa
           
 

Uses of FileAccess in com.ptc.wvs.client.pview
 

Fields in com.ptc.wvs.client.pview declared as FileAccess
private static FileAccess PViewUtilitiesWindchill.fa
           
 

Uses of FileAccess in wt.clients.beans.contentholder
 

Fields in wt.clients.beans.contentholder declared as FileAccess
private  FileAccess WTContentHolder.fileAccess
          Variable to hold access to local filesystem
 

Methods in wt.clients.beans.contentholder that return FileAccess
private  FileAccess WTContentHolder.getFileAccess()
           
 

Uses of FileAccess in wt.clients.checker
 

Fields in wt.clients.checker declared as FileAccess
private  FileAccess RMIConnectChecker.fileAccess
           
 

Uses of FileAccess in wt.clients.csm.widgets
 

Fields in wt.clients.csm.widgets declared as FileAccess
(package private)  FileAccess ImagePreviewFileChooser.fileAccess
           
 

Uses of FileAccess in wt.clients.ixb.exp
 

Fields in wt.clients.ixb.exp declared as FileAccess
private  FileAccess IXBExportUtility.fa
           
 

Uses of FileAccess in wt.clients.ixb.imp
 

Fields in wt.clients.ixb.imp declared as FileAccess
private  FileAccess IXBImportUtility.fa
           
 

Uses of FileAccess in wt.clients.util
 

Fields in wt.clients.util declared as FileAccess
private  FileAccess JFileChooserApplet.fileAccess
           
private  FileAccess HyperlinkFileChooserApplet.fileAccess
           
private  FileAccess FileUpload.fileAccess
           
private  FileAccess FileLocatorApplet.fileAccess
           
private  FileAccess FileLocator.fileAccess
           
private  FileAccess FileChooserDropApplet.fileAccess
           
 

Methods in wt.clients.util that return FileAccess
private  FileAccess JFileChooserApplet.getFileAccess()
           
private  FileAccess HyperlinkFileChooserApplet.getFileAccess()
           
private  FileAccess FileLocatorApplet.getFileAccess()
           
private  FileAccess FileLocator.getFileAccess()
           
private  FileAccess FileChooserDropApplet.getFileAccess()
           
 

Uses of FileAccess in wt.clients.util.http
 

Fields in wt.clients.util.http declared as FileAccess
private  FileAccess UploadPanel.fileAccess
           
private  FileAccess UploadApplet.fileAccess
           
private  FileAccess HTTPUploadDownloadTask.fileAccess
           
private  FileAccess HTTPUploadDownloadPanel.fileAccess
           
private  FileAccess DownloadPrimaryContentApplet.fileAccess
          Deprecated.  
private  FileAccess BrowseHTTPUploadDownload.fileAccess
           
 

Methods in wt.clients.util.http that return FileAccess
private  FileAccess UploadPanel.getFileAccess()
           
private  FileAccess UploadApplet.getFileAccess()
           
private  FileAccess HTTPUploadDownloadTask.getFileAccess()
           
private  FileAccess HTTPUploadDownloadPanel.getFileAccess()
           
private  FileAccess DownloadPrimaryContentApplet.getFileAccess()
          Deprecated.  
private  FileAccess BrowseHTTPUploadDownload.getFileAccess()
           
 

Uses of FileAccess in wt.content
 

Fields in wt.content declared as FileAccess
(package private) static FileAccess ChecksumHelper.fileAccess
           
 

Uses of FileAccess in wt.security
 

Subclasses of FileAccess in wt.security
(package private)  class FileAccess_plugin
           
 

Fields in wt.security declared as FileAccess
private static FileAccess WTJFileChooser.access
           
private  FileAccess WTFileSystemView.fa
           
 

Methods in wt.security that return FileAccess
static FileAccess FileAccess.getFileAccess(Frame parentFrame)
          Get instance of FileAccess.
static FileAccess FileAccess.getFileAccess()
          Get instance of FileAccess.
 

Constructors in wt.security with parameters of type FileAccess
WTJFileChooser(FileAccess access)
           
WTJFileChooser(FileAccess access, File currentDirectory)
           
WTFileSystemView(FileSystemView wrappedView, FileAccess fa)