test/javax/management/remote/rest/data/QueueSamplerBeanMBean.java
branchjmx-rest-api
changeset 55985 0c5a02edfdef
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/javax/management/remote/rest/data/QueueSamplerBeanMBean.java	Tue Aug 29 13:34:15 2017 +0530
@@ -0,0 +1,26 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package javax.management.remote.rest.test.data;
+
+import java.util.List;
+
+/**
+ *
+ * @author harsha
+ */
+public interface QueueSamplerBeanMBean {
+        public QueueSample getQueueSample();
+    
+    public void setQueueSample(QueueSample sample);
+
+    public String getQueueName();
+    
+    public void setQueueName(String name);
+    
+    public void clearQueue();
+
+    public String[] testMethod1(int[] param2, String param1, int sd34, String[] param3, QueueSample[] param4, List<QueueSample> param5);
+}