Package com.sun.enterprise.jxtamgmt

Examples of com.sun.enterprise.jxtamgmt.NetworkManager


     * @param  instanceName  instance name value
     * @return The peerID value
     */   
   public static PeerID getPeerIDLastGood(String instanceName) {
       //delegate to NetworkManager
       NetworkManager mgr = createInstance().getNetworkManager();
       return mgr.getPeerID(instanceName);
   }
View Full Code Here


     * @param  instanceName  instance name
     * @return The pipeID value
     */  
   public static PipeID getPipeIDLastGood(String instanceName) {
       //delegate to NetworkManager
       NetworkManager mgr = createInstance().getNetworkManager();
       return mgr.getPipeID(instanceName);
   }
View Full Code Here

    *
    * @return           The HealthPipe Pipe ID
    */
   public static PipeID getSessionQueryPipeIDLastGood() {
       //delegate to NetworkManager
       NetworkManager mgr = createInstance().getNetworkManager();
       return mgr.getSessionQueryPipeID();      
   }
View Full Code Here

        return networkManager;
    }
   
    public synchronized NetworkManager getNetworkManager() {
        if(networkManager == null) {
            this.networkManager = new NetworkManager(getClusterName(), instanceName, new HashMap());
        }
        return networkManager;
    }   
View Full Code Here

TOP

Related Classes of com.sun.enterprise.jxtamgmt.NetworkManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.