Package com.sun.enterprise.deployment.runtime.web

Examples of com.sun.enterprise.deployment.runtime.web.WebProperty


                idAssertionSupport = true;
            }

            WebProperty[] wblist = sipApplicationModel.getSunSipDescriptor().getWebProperty();
            for (int i = 0; i < wblist.length; i++) {
                WebProperty prop = wblist[i];
                if ("trust-id-ref".equals(prop.getValue("name"))) {
                    trustConfigId = (String) prop.getValue("value");

                } else if ("trust-auth-realm-ref".equals(prop.getValue("name"))) {
                    identityAuthRealm = (String) prop.getValue("value");
                }
            }
        }
        if ("P-Asserted-Identity".equals(assertionType)) {
            paAuth = true;
View Full Code Here


        if (env instanceof SipBundleDescriptor) {
            SunWebApp sunSipDesc = ((SipBundleDescriptor) env).getSipApplication().getSunSipDescriptor();
            WebProperty[] props = sunSipDesc.getWebProperty();
            if (props != null) {
                for (int i = 0; i < props.length; i++) {
                    WebProperty prop = props[i];
                    if ("trust-id-ref".equals(prop.getValue("name"))) {
                        return (String) prop.getValue("value");
                    }
                }
            }
        }
View Full Code Here

        addWebProperty(storeProperties, name, value);
    }

    private void addWebProperty(WebPropertyContainer webPropertyContainer,
            String name, String value) {
        WebProperty webProperty = new WebProperty();
        webProperty.setAttributeValue(WebProperty.NAME, name);
        webProperty.setAttributeValue(WebProperty.VALUE, value);
        webPropertyContainer.addWebProperty(webProperty);
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.runtime.web.WebProperty

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.