You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by bo...@apache.org on 2007/05/17 02:03:25 UTC

svn commit: r538775 - /incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/CompensateGeneratorMessages.java

Author: boisvert
Date: Wed May 16 17:03:24 2007
New Revision: 538775

URL: http://svn.apache.org/viewvc?view=rev&rev=538775
Log:
Ahem!  (Clears throat...)

After days lingering, the Ode peasants -- impoverished for lack of clean water and proper build sanistation -- 
revolt and take back control of the build.  The feudalism system is in jeopardy; the peasants are considering a set
of counter-measures and strikes against the Vassals responsible for this trajedy of the commons.

Maciej The Great, You Have Been Warned!  ;)


Added:
    incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/CompensateGeneratorMessages.java

Added: incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/CompensateGeneratorMessages.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/CompensateGeneratorMessages.java?view=auto&rev=538775
==============================================================================
--- incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/CompensateGeneratorMessages.java (added)
+++ incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/CompensateGeneratorMessages.java Wed May 16 17:03:24 2007
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.apache.ode.bpel.compiler;
+
+import org.apache.ode.bpel.compiler.api.CompilationMessage;
+import org.apache.ode.bpel.compiler.api.CompilationMessageBundle;
+
+/**
+ * @author Alex Boisvert <boisvert at apache dot org>
+ */
+public class CompensateGeneratorMessages extends CompilationMessageBundle {
+
+    /** The scope to compensate is unspecified. */
+    public CompilationMessage errScopeToCompensateUnspecfied() {
+        return this.formatCompilationMessage("The scope to compensate is unspecified.");
+    }
+
+}