Move to the root the bundles which will be part of v1.4 and v2.2
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.core / src / main / java / org / argeo / server / PrimitiveAnswer.java
diff --git a/server/runtime/org.argeo.server.core/src/main/java/org/argeo/server/PrimitiveAnswer.java b/server/runtime/org.argeo.server.core/src/main/java/org/argeo/server/PrimitiveAnswer.java
deleted file mode 100644 (file)
index c69ffed..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/*\r
- * Copyright (C) 2007-2012 Argeo GmbH\r
- *\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *         http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-package org.argeo.server;\r
-\r
-/**\r
- * Answer to a request to a remote service that sends back only one primitive\r
- */\r
-public class PrimitiveAnswer {\r
-\r
-       private Object primitive;\r
-\r
-       /** Canonical constructor */\r
-       public PrimitiveAnswer(Object primitive) {\r
-               this.primitive = primitive;\r
-       }\r
-\r
-       public Object getValue() {\r
-               return primitive;\r
-       }\r
-\r
-}\r