Package com.sun.enterprise.registration

Examples of com.sun.enterprise.registration.ServiceTag


            sessionMap.put("productInstanceURN", "0000");
            return;
        }
        try{
            List<ServiceTag> tags = regService.getServiceTags(RegistrationUtil.getGFProductURN());
            ServiceTag firstTag = tags.get(0);
            if (firstTag != null){
                sessionMap.put("productInstanceURN", firstTag.getInstanceURN());
                //System.out.println( "!!!!!!!!! get productInstanceURN #" + firstTag.getInstanceURN());
                return;
            }
        }catch(Exception ex){
            ex.printStackTrace();
View Full Code Here

TOP

Related Classes of com.sun.enterprise.registration.ServiceTag

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.