Package org.wymiwyg.commons.modellazywriter

Examples of org.wymiwyg.commons.modellazywriter.AddAction


        }
    Cookie cookie = new Cookie("temp_user", temporarySubject.getURI());
    cookie.setPath("/");
    setHeader(HeaderName.SET_COOKIE, cookie);
    Model model = temporarySubject.getModel();
    AddAction action = new AddAction();
    action.add(model.createStatement(temporarySubject, RDF.type, TEMPSUBJECT.TemporarySubject));
    action.add(model.createStatement(temporarySubject, DC.date, new W3CDateFormat().format(new Date())));
    ActionHandler.getActionHandler(model).addAction(action);
  }
View Full Code Here

TOP

Related Classes of org.wymiwyg.commons.modellazywriter.AddAction

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.