Package com.volantis.mcs.integration

Examples of com.volantis.mcs.integration.PageURLDetails


     * PageURLDetails.
     * @return the requested PageURLDetails.
     */
    public static synchronized PageURLDetails
            createPageURLDetails(final PageURLType pageURLType) {
        PageURLDetails details = getDetails(pageURLType);
        if (details == null) {
            details = new PageURLDetails() {
                public PageURLType getPageURLType() {
                    return pageURLType;
                }
            };
            detailsList.add(details);
View Full Code Here


     * @param pageURLType the PageTypeURL with which to identify the
     * PageDetails.
     * @return the existing PageURLDetails or null if none was found.
     */
    private static PageURLDetails getDetails(PageURLType pageURLType) {
        PageURLDetails details = null;
        for (int i = 0; i < detailsList.size() && details == null; i++) {
            PageURLDetails existingDetails = (PageURLDetails) detailsList.get(i);
            if (existingDetails.getPageURLType() == pageURLType) {
                details = existingDetails;
            }
        }

        return details;
View Full Code Here

TOP

Related Classes of com.volantis.mcs.integration.PageURLDetails

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.