/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.test.cmp2.simple; import java.math.BigDecimal; import java.sql.Time; import java.sql.Timestamp; import java.util.Hashtable; import javax.ejb.EJBLocalObject; public interface Simple extends EJBLocalObject { public String getId(); public ValueClass getValueClass(); public void setValueClass(ValueClass vc); public boolean getBooleanPrimitive(); public void setBooleanPrimitive(boolean b); public Boolean getBooleanObject(); public void setBooleanObject(Boolean b); public byte getBytePrimitive(); public void setBytePrimitive(byte b); public Byte getByteObject(); public void setByteObject(Byte b); public short getShortPrimitive(); public void setShortPrimitive(short s); public Short getShortObject(); public void setShortObject(Short s); public int getIntegerPrimitive(); public void setIntegerPrimitive(int i); public Integer getIntegerObject(); public void setIntegerObject(Integer i); public long getLongPrimitive(); public void setLongPrimitive(long l); public Long getLongObject(); public void setLongObject(Long l); public float getFloatPrimitive(); public void setFloatPrimitive(float f); public Float getFloatObject(); public void setFloatObject(Float f); public double getDoublePrimitive(); public void setDoublePrimitive(double d); public Double getDoubleObject(); public void setDoubleObject(Double d); public String getStringValue(); public void setStringValue(String s); public java.util.Date getUtilDateValue(); public void setUtilDateValue(java.util.Date d); public void updateUtilDateValue(java.util.Date d); public java.sql.Date getSqlDateValue(); public void setSqlDateValue(java.sql.Date d); public Time getTimeValue(); public void setTimeValue(Time t); public Timestamp getTimestampValue(); public void setTimestampValue(Timestamp t); public java.math.BigDecimal getBigDecimalValue(); public void setBigDecimalValue(java.math.BigDecimal d); public byte[] getByteArrayValue(); public void setByteArrayValue(byte[] bytes); public Object getObjectValue(); public void setObjectValue(Object t); public void addToHashtable(String key, String value); public Hashtable getHashtable(); public void setHashtable(Hashtable t); }