FITECH Laboratories spacer
graphic Company graphic Products graphic Support graphic Customers graphic Partners
The Power of Choice
spacer » Buy graphic » Try graphic » Map graphic » Contact graphic
spacer
spacer
xTier™
Overview
xTier Services
Business Case
Documentation
F.A.Q.
Buy xTier™
Try xTier™
Professional Services
graphic
spacer xTier
spacer
info
Product: xTier™/LWC 2.3
Whitepaper: n/a
spacer
 support@fitechlabs.com
 Download
 Buy
 Depends: n/a
 Related: os
xTier™ Navigator:
cache cluster config email i18n
ioc info jmx jndi security
log marshal objpool os fs
tx uidgen workflow jobs
db startup jms grid

Description
The info service is a special type of service. This service provides information about xTier™ as a product as well as initial configuration parameters.

 Top

Configuration
The info service, unlike most of the xTier™ services, does not require configuration through XML and thus it does not have an associated XML configuration file.

 Top

Examples
The info service is simple to use and follows the standard way for accessing services in xTier™. The following code snippet illustrates the basic usage pattern for the 'info' service:

1// Get the instance of xTier kernel.
2XtierKernel xtier = XtierKernel.getInstance();
3 
4// Get the instance of 'info' service.
5InfoService info = xtier.info();
6 
7// Use 'info' service.
8System.out.println("Kernel region configuration path: " + 
9    info.getKernelRegionConfigPath());
10System.out.println("Kernel region feature set: " + 
11    info.getKernelRegionFeatureSet());
12System.out.println("Kernel region name: " + 
13    info.getKernelRegionName());
14System.out.println("Support email: " + 
15    info.getSupportEmail());
16System.out.println("Vendor address: " + 
17    info.getVendorAddress());
18System.out.println("Vendor name: " + 
19    info.getVendorName());
20System.out.println("Vendor website: " + 
21    info.getVendorWebSite());
22System.out.println("xTier copyright: " + 
23    info.getXtierCopyright());
24System.out.println("xTier installation root: " + 
25    info.getXtierInstallRoot());
26System.out.println("xTier version: " + 
27    info.getXtierVersion());
28System.out.println("xTier website: " + 
29    info.getXtierWebSite()); 

 Download xTier™ for full examples and documentation.

 Top

spacer