Package com.sun.enterprise.deployment

Examples of com.sun.enterprise.deployment.LocaleEncodingMappingDescriptor


        LocaleEncodingMappingListDescriptor lemds =
                            wmd.getLocaleEncodingMappingListDescriptor();
        if (lemds != null) {
            set2 = lemds.getLocaleEncodingMappingSet();
            iterator2 = set2.iterator();
            LocaleEncodingMappingDescriptor lemd;
            while (iterator2.hasNext()){
                lemd = (LocaleEncodingMappingDescriptor) iterator2.next();
                webModule.
                    addLocaleEncodingMappingParameter(lemd.getLocale(),
                                                      lemd.getEncoding());
            }
        }
    }
View Full Code Here


        LocaleEncodingMappingListDescriptor lemds =
                   ((SipApplication) sipApplication).getLocaleEncodingMappingListDescriptor();
        if (lemds != null) {
            Set set2 = lemds.getLocaleEncodingMappingSet();
            Iterator iterator2 = set2.iterator();
            LocaleEncodingMappingDescriptor lemd;
            while (iterator2.hasNext()){
                lemd = (LocaleEncodingMappingDescriptor) iterator2.next();
                convergedModule.addLocaleEncodingMappingParameter(lemd.getLocale(),
                                                      lemd.getEncoding());
            }
        }
    }
View Full Code Here

     * @return the descriptor instance to associate with this XMLNode
     */
    @Override
    public LocaleEncodingMappingDescriptor getDescriptor() {
        if (descriptor==null) {
            descriptor = new LocaleEncodingMappingDescriptor();
        }
        return descriptor;
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.LocaleEncodingMappingDescriptor

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.