Package org.atomojo.app.db

Examples of org.atomojo.app.db.SyncProcess.create()


         }
         if (proc.getSyncTarget()==null) {
            getResponse().setStatus(Status.CLIENT_ERROR_BAD_REQUEST);
            return new StringRepresentation("The local target with name "+top.getAttributeValue("target")+" does not exist.");
         }
         if (proc.create()) {
            getResponse().setStatus(Status.SUCCESS_NO_CONTENT);
            Reference ref = new Reference(getRequest().getResourceRef().toString()+"/"+proc.getName());
            getResponse().setLocationRef(ref);
            return null;
         } else {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.