User: ejort   
  Date: 02/02/22 08:44:33

  Added:       src/main/test/compliance/query/support NumberTest.java
                        NumberTestMBean.java StringTest.java
                        StringTestMBean.java Trivial.java TrivialMBean.java
  Log:
  Default Domain, Querying, Various Other Fixes
  
  Revision  Changes    Path
  1.1                  jmx/src/main/test/compliance/query/support/NumberTest.java
  
  Index: NumberTest.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.query.support;
  
  public class NumberTest implements NumberTestMBean
  {
     private int number = 0;
  
     public NumberTest()
     {
     }
  
     public NumberTest(int number)
     {
        this.number = number;
     }
  
     public Integer getNumber()
     {
        return new Integer(number);
     }
  }
  
  
  
  1.1                  jmx/src/main/test/compliance/query/support/NumberTestMBean.java
  
  Index: NumberTestMBean.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.query.support;
  
  public interface NumberTestMBean
  {
     Integer getNumber();
  }
  
  
  
  1.1                  jmx/src/main/test/compliance/query/support/StringTest.java
  
  Index: StringTest.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.query.support;
  
  public class StringTest implements StringTestMBean
  {
     private String string = "";
  
     public StringTest()
     {
     }
  
     public StringTest(String string)
     {
        this.string = string;
     }
  
     public String getString()
     {
        return string;
     }
  }
  
  
  
  1.1                  jmx/src/main/test/compliance/query/support/StringTestMBean.java
  
  Index: StringTestMBean.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.query.support;
  
  public interface StringTestMBean
  {
     String getString();
  }
  
  
  
  1.1                  jmx/src/main/test/compliance/query/support/Trivial.java
  
  Index: Trivial.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.query.support;
  
  public class Trivial implements TrivialMBean
  {
     private String string = "trivial";
     private int number = 0;
  
     public Trivial()
     {
     }
  
     public Trivial(int number)
     {
        this.number = number;
     }
  
     public String getString()
     {
        return string;
     }
  
     public Integer getNumber()
     {
        return new Integer(number);
     }
  }
  
  
  
  1.1                  jmx/src/main/test/compliance/query/support/TrivialMBean.java
  
  Index: TrivialMBean.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.query.support;
  
  public interface TrivialMBean
  {
     String getString();
     Integer getNumber();
  }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to