Examples of InfrastructureInfo


Examples of it.infn.ct.GridEngine.Job.InfrastructureInfo

        }
        if(_log !=null)
            _log.info("Enabled infrastructures: '"+numEnabledInfrastructures+"'");

        // Initialize the array of GridEngine' infrastructure objects
        InfrastructureInfo infrastructuresInfo[] = new InfrastructureInfo[numEnabledInfrastructures];
        // For each infrastructure
        for(int i=0,h=0; i<getNumInfrastructures(); i++) {
            int j=i+1;
            // Take care of wms list
            // GridEngine supports a list of WMSes as an array of string
            // while the AppPreferences uses a ';' separated list of entries
            // Following code makes the necessary conversion
            String wmsHostList[]=null;
            if(     null != getWmsHosts(i)
                && !getWmsHosts(i).equals("")) {
                wmsHostList = getWmsHosts(i).split(";");
                String showWMSList=LS+"wmsHostList"
                                  +LS+"-----------";                                        
                for(int k=0; k<wmsHostList.length; k++)
                    showWMSList+=LS+wmsHostList[k];
                if(null != _log) _log.info(showWMSList);
            } // if wmsList
            if(appInfrastructuresInfo.get(i).getEnableInfrastructure().equalsIgnoreCase("yes")) {
                // Build the infrastructure object and assign it to the infrastructure array
                // (!)Not yet used values:
                //    pxServerSecure
                //    pxRobotRenewalFlag
                //    pxUserProxy               
                infrastructuresInfo[h++] = new InfrastructureInfo( getAcronymInfrastructure(i)
                                                                  ,             getBdiiHost(i)                                                               
                                                                  ,             wmsHostList
                                                                  ,         getPxServerHost(i)
                                                                  ,         getPxServerPort(i)
                                                                  ,            getPxRobotId(i)
View Full Code Here

Examples of it.infn.ct.GridEngine.Job.InfrastructureInfo

                        , String etokenserver
                        , String etokenserverport
                        , String proxyid
                        , String vo
                        , String fqan) {
        infrastructureInfo=new InfrastructureInfo(name
                                                , bdii
                                                , wmslist
                                                , etokenserver
                                                , etokenserverport
                                                , proxyid
View Full Code Here

Examples of it.infn.ct.GridEngine.Job.InfrastructureInfo

                        , String etokenserverport
                        , String proxyid
                        , String vo
                        , String fqan
                        , String swtag) {
        infrastructureInfo=new InfrastructureInfo(name
                                                , bdii
                                                , wmslist
                                                , etokenserver
                                                , etokenserverport
                                                , proxyid
View Full Code Here

Examples of it.infn.ct.GridEngine.Job.InfrastructureInfo

     * @see AppInfrastructureInfo
     * @see it.infn.ct.GridEngine.Job.InfrastructureInfo
     */
    private void AppInfrastructureInfoToInfrastructureInfo() {
        // Aligns date from InfrastructureInfo to the AppInfrastructureInfo       
        infrastructureInfo=new InfrastructureInfo(this.acronymInfrastructure
                                                , this.bdiiHost
                                                , this.wmsHosts.split(";")
                                                , this.pxServerHost
                                                , this.pxServerPort
                                                , this.pxRobotId
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.