You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hise-commits@incubator.apache.org by wi...@apache.org on 2010/09/17 15:03:08 UTC

svn commit: r998169 - /incubator/hise/trunk/hise-services/src/main/java/org/apache/hise/engine/jaxws/TaskOperationsAdministrative.java

Author: witek
Date: Fri Sep 17 15:03:07 2010
New Revision: 998169

URL: http://svn.apache.org/viewvc?rev=998169&view=rev
Log:
license

Modified:
    incubator/hise/trunk/hise-services/src/main/java/org/apache/hise/engine/jaxws/TaskOperationsAdministrative.java

Modified: incubator/hise/trunk/hise-services/src/main/java/org/apache/hise/engine/jaxws/TaskOperationsAdministrative.java
URL: http://svn.apache.org/viewvc/incubator/hise/trunk/hise-services/src/main/java/org/apache/hise/engine/jaxws/TaskOperationsAdministrative.java?rev=998169&r1=998168&r2=998169&view=diff
==============================================================================
--- incubator/hise/trunk/hise-services/src/main/java/org/apache/hise/engine/jaxws/TaskOperationsAdministrative.java (original)
+++ incubator/hise/trunk/hise-services/src/main/java/org/apache/hise/engine/jaxws/TaskOperationsAdministrative.java Fri Sep 17 15:03:07 2010
@@ -1,3 +1,23 @@
+/*
+ * 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.hise.engine.jaxws;
 
 import java.math.BigInteger;
@@ -25,20 +45,20 @@ import org.apache.hise.lang.xsd.htdt.TTi
 
 public interface TaskOperationsAdministrative extends TaskOperations {
 
-	public String getUserName();
-	public void setUserName(String userNameinAdministrativeMode);
-	public StopResponseDocument stop(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
-	public ReleaseResponseDocument release(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault ;
-	public GetTaskInfoResponseDocument getTaskInfo(Long id) throws IllegalArgumentFault;
-	public SuspendUntilResponseDocument suspendUntil(Long id, TTime time) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
-	public RemoveResponseDocument remove(Long id) throws IllegalArgumentFault, IllegalAccessFault;	  
-	public ResumeResponseDocument resume(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
-	public SuspendResponseDocument suspend(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
-	public ActivateResponseDocument activate(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
-	public ClaimResponseDocument claim(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault ;
-	public SetPriorityResponseDocument setPriority(Long id, BigInteger priority) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
-	public GetMyTasksResponseDocument getMyTasks(String taskType, String genericHumanRole, String workQueue, List<TStatus.Enum> status, String whereClause, String createdOnClause,
+	String getUserName();
+	void setUserName(String userNameinAdministrativeMode);
+	StopResponseDocument stop(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
+	ReleaseResponseDocument release(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault ;
+	GetTaskInfoResponseDocument getTaskInfo(Long id) throws IllegalArgumentFault;
+	SuspendUntilResponseDocument suspendUntil(Long id, TTime time) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
+	RemoveResponseDocument remove(Long id) throws IllegalArgumentFault, IllegalAccessFault;	  
+	ResumeResponseDocument resume(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
+	SuspendResponseDocument suspend(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
+	ActivateResponseDocument activate(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
+	ClaimResponseDocument claim(Long id) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault ;
+	SetPriorityResponseDocument setPriority(Long id, BigInteger priority) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault;
+	GetMyTasksResponseDocument getMyTasks(String taskType, String genericHumanRole, String workQueue, List<TStatus.Enum> status, String whereClause, String createdOnClause,
             Integer maxTasks, Integer fromTaskNumber) throws IllegalArgumentFault, IllegalStateFault;
-    public GetMyTaskAbstractsResponseDocument getMyTaskAbstracts(String taskType, String genericHumanRole, String workQueue, List<TStatus.Enum> status, String whereClause,
+    GetMyTaskAbstractsResponseDocument getMyTaskAbstracts(String taskType, String genericHumanRole, String workQueue, List<TStatus.Enum> status, String whereClause,
             String createdOnClause, Integer maxTasks, Integer fromTaskNumber) throws IllegalArgumentFault, IllegalStateFault;
 }