Package com.sun.enterprise.deployment

Examples of com.sun.enterprise.deployment.LocaleEncodingMappingListDescriptor


        enumeration = wmd.getWelcomeFiles();
        while (enumeration.hasMoreElements()){
            webModule.addWelcomeFile((String)enumeration.nextElement());
        }
       
        LocaleEncodingMappingListDescriptor lemds =
                            wmd.getLocaleEncodingMappingListDescriptor();
        if (lemds != null) {
            set2 = lemds.getLocaleEncodingMappingSet();
            iterator2 = set2.iterator();
            LocaleEncodingMappingDescriptor lemd;
            while (iterator2.hasNext()){
                lemd = (LocaleEncodingMappingDescriptor) iterator2.next();
                webModule.
View Full Code Here


         // message-destination*
       writeMessageDestinations
           (jarNode, webBundleDesc.getMessageDestinations().iterator());

       LocaleEncodingMappingListDescriptor lemDesc = webBundleDesc.getLocaleEncodingMappingListDescriptor();
  if(lemDesc != null) {
      LocaleEncodingMappingListNode ln = new LocaleEncodingMappingListNode();
      ln.writeDescriptor(jarNode,
        WebTagNames.LOCALE_ENCODING_MAPPING_LIST,
        lemDesc);
View Full Code Here

    }
   
    public void configureLocaleEncodingMappings(WebModule convergedModule,
                   BundleDescriptor sipApplication) {
      
        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(),
View Full Code Here

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

TOP

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

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.