Package com.ettrema.http

Examples of com.ettrema.http.CalendarResource


            return "calendar-description";
        }

        public String getValue( PropFindableResource res ) {
            if( res instanceof CalendarResource) {
                CalendarResource ical = (CalendarResource) res;
                return ical.getCalendarDescription();
            } else {
                log.warn( "getValue: not a ICalResource");
                return null;
            }
View Full Code Here


        // Generate the response
        List<PropFindResponse> respProps = new ArrayList<PropFindResponse>();

        if (resource instanceof CalendarResource) {
            CalendarResource calendar = (CalendarResource) resource;
            List<ICalResource> foundResources = findCalendarResources(calendar, doc);
            log.trace("foundResources: " + foundResources.size());
            String parentHref = HttpManager.request().getAbsolutePath();
            parentHref = Utils.suffixSlash(parentHref);
            for(ICalResource cr : foundResources) {
View Full Code Here

TOP

Related Classes of com.ettrema.http.CalendarResource

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.