summaryrefslogtreecommitdiffstats
path: root/sandbox/kgoodson/jagg-logic/src/main/java/services/PlanView.java
diff options
context:
space:
mode:
authorkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-03-16 10:37:57 +0000
committerkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-03-16 10:37:57 +0000
commit64ae409b1830310a1a44bcf305cab40c9061f3e6 (patch)
tree6c2be4dab8b0978ffffc0a4def656242dbea1fa9 /sandbox/kgoodson/jagg-logic/src/main/java/services/PlanView.java
parentd254713ca1e7687d6104c2091694c7707e7887aa (diff)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@923672 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/kgoodson/jagg-logic/src/main/java/services/PlanView.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/sandbox/kgoodson/jagg-logic/src/main/java/services/PlanView.java b/sandbox/kgoodson/jagg-logic/src/main/java/services/PlanView.java
new file mode 100644
index 0000000000..ffb68270da
--- /dev/null
+++ b/sandbox/kgoodson/jagg-logic/src/main/java/services/PlanView.java
@@ -0,0 +1,38 @@
+/*
+ * 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 services;
+
+import org.oasisopen.sca.annotation.Remotable;
+
+import com.example.ipo.jaxb.Plan;
+
+
+
+
+
+@Remotable
+public interface PlanView {
+
+ Plan get();
+ Plan getLite(); // don't go off to issue site - use cached properties
+ void postNewWorkItem(String msChoice, String jira);
+ void postNewMilestone(String newMSName);
+
+} \ No newline at end of file