test/javax/management/remote/rest/data/QueueSamplerBeanMBean.java
author hb
Tue, 29 Aug 2017 13:34:15 +0530
branchjmx-rest-api
changeset 55985 0c5a02edfdef
permissions -rw-r--r--
REST Adapter Initial commit 1. Unit tested and working GET/POST interfaces 2. Unit tested and working JSON parser

/*
 * 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);
}