Package edu.mit.simile.backstage.model

Examples of edu.mit.simile.backstage.model.Exhibit


        } catch (MalformedURLException e) {
            _logger.error("Failed to construct exhibit identity from request " + request.toString(), e);
            return null;
        }
       
        return new Exhibit(this, exhibitIdentity);
    }
View Full Code Here


    // ---------------------------------------------------------------------
   
    public Object jsFunction_createExhibit(Object requestO, String refererUrlSHA1, String id) throws MalformedURLException {
        HttpServletRequest request = (HttpServletRequest) unwrap(requestO);
        ExhibitCollection ec = getExhibitCollection(request);
        Exhibit exhibit = getModule().createExhibit(request, refererUrlSHA1);
       
        ec.setExhibit(id, exhibit);
       
        return wrap(exhibit, this);
    }
View Full Code Here

    }
   
    public Object jsFunction_getExhibit(Object requestO, String id) throws MalformedURLException {
        HttpServletRequest request = (HttpServletRequest) unwrap(requestO);
        ExhibitCollection ec = getExhibitCollection(request);
        Exhibit exhibit = ec.getExhibit(id);
       
        return wrap(exhibit, this);
    }
View Full Code Here

TOP

Related Classes of edu.mit.simile.backstage.model.Exhibit

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.