001: /*
002: * JBoss, Home of Professional Open Source.
003: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
004: * as indicated by the @author tags. See the copyright.txt file in the
005: * distribution for a full listing of individual contributors.
006: *
007: * This is free software; you can redistribute it and/or modify it
008: * under the terms of the GNU Lesser General Public License as
009: * published by the Free Software Foundation; either version 2.1 of
010: * the License, or (at your option) any later version.
011: *
012: * This software is distributed in the hope that it will be useful,
013: * but WITHOUT ANY WARRANTY; without even the implied warranty of
014: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015: * Lesser General Public License for more details.
016: *
017: * You should have received a copy of the GNU Lesser General Public
018: * License along with this software; if not, write to the Free
019: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
020: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
021: */
022: package org.jboss.test.jcaprops.support;
023:
024: /**
025: * A PropertyTestAdminObject.
026: *
027: * @author <a href="adrian@jboss.com">Adrian Brock</a>
028: * @version $Revision: 57211 $
029: */
030: public interface PropertyTestAdminObject {
031: Boolean getBooleanAO();
032:
033: void setBooleanAO(Boolean booleanAO);
034:
035: Boolean getBooleanAOMBean();
036:
037: void setBooleanAOMBean(Boolean booleanAOMBean);
038:
039: Byte getByteAO();
040:
041: void setByteAO(Byte byteAO);
042:
043: Byte getByteAOMBean();
044:
045: void setByteAOMBean(Byte byteAOMBean);
046:
047: Character getCharacterAO();
048:
049: void setCharacterAO(Character characterAO);
050:
051: Character getCharacterAOMBean();
052:
053: void setCharacterAOMBean(Character characterAOMBean);
054:
055: Double getDoubleAO();
056:
057: void setDoubleAO(Double doubleAO);
058:
059: Double getDoubleAOMBean();
060:
061: void setDoubleAOMBean(Double doubleAOMBean);
062:
063: Float getFloatAO();
064:
065: void setFloatAO(Float floatAO);
066:
067: Float getFloatAOMBean();
068:
069: void setFloatAOMBean(Float floatAOMBean);
070:
071: Integer getIntegerAO();
072:
073: void setIntegerAO(Integer integerAO);
074:
075: Integer getIntegerAOMBean();
076:
077: void setIntegerAOMBean(Integer integerAOMBean);
078:
079: Long getLongAO();
080:
081: void setLongAO(Long longAO);
082:
083: Long getLongAOMBean();
084:
085: void setLongAOMBean(Long longAOMBean);
086:
087: Short getShortAO();
088:
089: void setShortAO(Short shortAO);
090:
091: Short getShortAOMBean();
092:
093: void setShortAOMBean(Short shortAOMBean);
094:
095: String getStringAO();
096:
097: void setStringAO(String stringAO);
098:
099: String getStringAOMBean();
100:
101: void setStringAOMBean(String stringAOMBean);
102: }
|