Package com.sun.enterprise.config.serverbeans

Examples of com.sun.enterprise.config.serverbeans.Acctapp


                peerConfig.addDiameterApplications(diaApps);
            }
            Application diaApp = new Application();
            diaApp.setVendorid(vendorId);
            if (acctAppId != null) {
                Acctapp acctApp = new Acctapp();
                acctApp.setId(acctAppId);
                diaApp.addAcctapp(acctApp);
            }
            if (authAppId != null) {
                Authapp authApp = new Authapp();
                authApp.setId(authAppId);
View Full Code Here


            if (diaApp == null) {
                String msg = _strMgr.getString("ApplicationNotAvl", targetName);
                throw new MBeanException(new ConfigException(msg));
            }
            if (acctAppId != null) {
                Acctapp acctApp = new Acctapp();
                acctApp.setId(acctAppId);
                diaApp.addAcctapp(acctApp);
            }
        } catch (ConfigException e) {
            throw new MBeanException(e);
        }
View Full Code Here

            if (diaApp == null) {
                String msg = _strMgr.getString("ApplicationNotAvl", targetName);
                throw new MBeanException(new ConfigException(msg));
            }
            if (diaApp.getAcctappById(acctAppId) != null) {
                Acctapp acctApp = diaApp.getAcctappById(acctAppId);
                diaApp.removeAcctapp(acctApp);
            }
        } catch (MBeanException e) {
            throw new MBeanException(e);
        }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.config.serverbeans.Acctapp

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.