1 17 18 package org.apache.geronimo.connector.mock; 19 20 26 public class MockAdminObjectImpl implements MockAdminObject { 27 28 private String tweedle; 29 30 public String getTweedle() { 31 return tweedle; 32 } 33 34 public void setTweedle(String tweedle) { 35 this.tweedle = tweedle; 36 } 37 38 public MockAdminObject getSomething() { 39 return this; 40 } 41 } 42 | Popular Tags |