Rakesh API

biz.wedoit4u.ejb.entity
Interface CustomerType

All Superinterfaces:
javax.ejb.EJBLocalObject

public interface CustomerType
extends javax.ejb.EJBLocalObject

The Local interface for the entity bean representing a record in the customer_types table.

Accessor methods are defined for all the columns, while mutator methods are defined for all columns except the primary key column.

Copyright 2003, Rakesh Vidyadharan

Version:
$Id: CustomerType.java,v 1.4 2004/05/26 11:42:34 rakesh Exp $
Author:
Rakesh Vidyadharan on 16th September 2003

Method Summary
 java.util.Set getCustomers()
          Return a Set of references to the Customer entity beans that belong to this customer_type.
 int getCustomerTypeId()
          Return the value in the customer_type_id column.
 java.lang.String getDescription()
          Return the value in the description column.
 java.lang.String getType()
          Return the value in the type column.
 void setDescription(java.lang.String description)
          Set the value in the description column.
 void setType(java.lang.String type)
          Set the value in the type column.
 
Methods inherited from interface javax.ejb.EJBLocalObject
getEJBLocalHome, getPrimaryKey, isIdentical, remove
 

Method Detail

getCustomerTypeId

int getCustomerTypeId()
Return the value in the customer_type_id column.

Returns:
int - The value in the column.

getType

java.lang.String getType()
Return the value in the type column.

Returns:
String - The value in the column.

setType

void setType(java.lang.String type)
Set the value in the type column.

Parameters:
type - - The value to set.

getDescription

java.lang.String getDescription()
Return the value in the description column.

Returns:
String - The value in the column.

setDescription

void setDescription(java.lang.String description)
Set the value in the description column.

Parameters:
description - - The value to set.

getCustomers

java.util.Set getCustomers()
Return a Set of references to the Customer entity beans that belong to this customer_type.

Returns:
Set - The Set of customers belonging to this type.

Rakesh API

Copyright © 2002-2005 - Rakesh Vidyadharan