/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.openjpa.persistence.jdbc.common.apps; public class PlaceholderTypesB extends PlaceholderTypesA { private boolean booleanB; private byte byteB; private char charB; private float floatB; private int intB; private String stringB; private String clobB; private Object blobB; public boolean getBooleanB() { return booleanB; } public void setBooleanB(boolean booleanB) { this.booleanB = booleanB; } public byte getByteB() { return byteB; } public void setByteB(byte byteB) { this.byteB = byteB; } public char getCharB() { return charB; } public void setCharB(char charB) { this.charB = charB; } public float getFloatB() { return floatB; } public void setFloatB(float floatB) { this.floatB = floatB; } public int getIntB() { return intB; } public void setIntB(int intB) { this.intB = intB; } public String getStringB() { return stringB; } public void setStringB(String stringB) { this.stringB = stringB; } public String getClobB() { return clobB; } public void setClobB(String clobB) { this.clobB = clobB; } public Object getBlobB() { return blobB; } public void setBlobB(Object blobB) { this.blobB = blobB; } }