X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.detached%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fdetached%2FDetachedAnswer.java;h=b7b92550019bd67b6cfcd1ef661c74bada21204b;hb=58e0e18d64a2080680a9f8397b0dfa2894519910;hp=55789a04696f0b3d1b6a92694547aacc222938e5;hpb=8279efc2b92ba454b24ad4d06e7878b00836c07d;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedAnswer.java b/runtime/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedAnswer.java index 55789a046..b7b925500 100644 --- a/runtime/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedAnswer.java +++ b/runtime/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedAnswer.java @@ -1,7 +1,23 @@ +/* + * Copyright (C) 2007-2012 Argeo GmbH + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.argeo.slc.detached; import java.util.Properties; +/** An answer returned by the detached server. Always related to a request. */ public class DetachedAnswer implements DetachedCommunication { static final long serialVersionUID = 1l; @@ -54,6 +70,11 @@ public class DetachedAnswer implements DetachedCommunication { this.log = log; } + public void addToLog(String msg) { + this.log = new StringBuffer(this.log).append(msg).toString(); + } + + /** The unique identifier of this answer. */ public String getUuid() { return uuid; } @@ -82,4 +103,13 @@ public class DetachedAnswer implements DetachedCommunication { throw new DetachedException("Unkown status " + status); } } + + public String toString() { + StringBuffer buf = new StringBuffer("detached answer "); + buf.append('#').append(uuid); + buf.append(" status=").append(convertStatus(status)); + buf.append(" properties=").append(properties); + buf.append(" log=").append(log); + return buf.toString(); + } }