Uses of Class
com.bankframe.validation.ValidationException

Packages that use ValidationException
com.bankframe   
com.bankframe.ei.txnhandler.storeandforward.impl.storequeue   
com.bankframe.ei.txnhandler.storeandforward.storequeue   
com.bankframe.ejb   
com.bankframe.examples.bo.account   
com.bankframe.examples.bo.address   
com.bankframe.examples.bo.customer   
com.bankframe.examples.bo.impl.account   
com.bankframe.examples.bo.impl.address   
com.bankframe.examples.bo.impl.customer   
com.bankframe.examples.bp.accountsearch   
com.bankframe.examples.bp.customersearch   
com.bankframe.examples.bp.impl.accountsearch   
com.bankframe.examples.bp.impl.customersearch   
com.bankframe.examples.txnhandler.connector.coboltest   
com.bankframe.fe.statemachine.ext.apploaders   
com.bankframe.fe.statemachine.ext.validation   
com.bankframe.services.route   
com.bankframe.validation   
 

Uses of ValidationException in com.bankframe
 

Methods in com.bankframe that throw ValidationException
 void Constant.validate(java.lang.String data, int errorNumber)
          This method checks if the parameter data is contained in the constants that this class represents.
 

Uses of ValidationException in com.bankframe.ei.txnhandler.storeandforward.impl.storequeue
 

Methods in com.bankframe.ei.txnhandler.storeandforward.impl.storequeue that throw ValidationException
 java.util.Vector StoreQueueBean.createStoredTransaction(DataPacket data)
          This method adds a new Transaction to the store queue.
 java.util.Vector StoreQueueBean.findStoredTransactionsInTimePeriod(DataPacket data)
          This method performs a lookup on the Store queue by time period
 

Uses of ValidationException in com.bankframe.ei.txnhandler.storeandforward.storequeue
 

Methods in com.bankframe.ei.txnhandler.storeandforward.storequeue that throw ValidationException
 java.util.Enumeration StoreQueueBean.findStoredTransactionsInTimePeriod(long startTime, long endTime)
          This method performs a lookup on the store queue for a given time period
 java.util.Enumeration StoreQueue.findStoredTransactionsInTimePeriod(long startTime, long endTime)
          This method performs a lookup on the store queue for a given time period
 

Uses of ValidationException in com.bankframe.ejb
 

Subclasses of ValidationException in com.bankframe.ejb
 class ValidationException
          Deprecated. Use com.bankframe.validation.ValidationException instead
 

Uses of ValidationException in com.bankframe.examples.bo.account
 

Methods in com.bankframe.examples.bo.account that throw ValidationException
 void AccountValidator.validateAccountName(java.lang.String accountName)
          This method validates the account name.
 void AccountValidator.validateAccountNumber(java.lang.String accountNumber)
          This method validates the account number.
 void AccountValidator.validateAmend(java.lang.String accountName)
           
 void AccountValidator.validateCardNumber(java.lang.String cardNumber)
          This method validates a card number.
 void AccountValidator.validateCreate(java.lang.String cardNumber, java.lang.String accountNumber, java.lang.String accountName)
           
 java.util.Enumeration AccountFinders.findAll()
          This method retrieves all instances of the Account entity.
 void AccountBean.amend(java.lang.String accountName)
          This method amends the attributes of the Account entity.
 void AccountBean.create(java.lang.String cardNumber, java.lang.String accountNumber, java.lang.String accountName)
          This method initialises a new instance of the Account entity.
 void Account.amend(java.lang.String accountName)
          This method amends the attributes of the Address Entity.
 

Uses of ValidationException in com.bankframe.examples.bo.address
 

Methods in com.bankframe.examples.bo.address that throw ValidationException
 void AddressValidator.validateAddressLine1(java.lang.String addressLine1)
          This mehtod validates line 1 of the address.
 void AddressValidator.validateAddressLine2(java.lang.String addressLine2)
          This method validates line 2 of the address.
 void AddressValidator.validateAddressLine3(java.lang.String addressLine3)
          This method validates line 3 of the address.
 void AddressValidator.validateAddressLine4(java.lang.String addressLine4)
          This method validates line 4 of the address.
 void AddressValidator.validateAmend(java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
           
 void AddressValidator.validateCountry(java.lang.String country)
          This method validates the country field.
 void AddressValidator.validateCreate(java.lang.String ownerId, java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
           
 void AddressValidator.validateOwnerId(java.lang.String ownerId)
          This method validates the owner ID.
 void AddressValidator.validatePostCode(java.lang.String postCode)
          This method validates the post code.
 java.util.Enumeration AddressFinders.findAll()
          This method retrieves all instances of the Address entity.
 java.util.Enumeration AddressFinders.findByCountry(java.lang.String country)
           
 java.util.Enumeration AddressFinders.findByPostCode(java.lang.String postCode)
           
 void AddressBean.amend(java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method amends the attributes of the Address entity.
 void AddressBean.create(java.lang.String ownerId, java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method initialises a new instance of the Address entity.
 void Address.amend(java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method amends the attributes of the Address entity.
 

Uses of ValidationException in com.bankframe.examples.bo.customer
 

Methods in com.bankframe.examples.bo.customer that throw ValidationException
 void CustomerValidator.validateAmend(java.lang.String title, java.lang.String firstName, java.lang.String lastName)
           
 void CustomerValidator.validateCreate(java.lang.String ownerId, java.lang.String title, java.lang.String firstName, java.lang.String lastName)
           
 void CustomerValidator.validateFirstName(java.lang.String firstName)
           
 void CustomerValidator.validateLastName(java.lang.String lastName)
           
 void CustomerValidator.validateOwnerId(java.lang.String ownerId)
           
 void CustomerValidator.validateTitle(java.lang.String title)
           
 java.util.Enumeration CustomerFinders.findAll()
          This method retrieves all instance of the customer entity from the database.
 java.util.Enumeration CustomerFinders.findByFirstName(java.lang.String firstName)
          This method gets all entities with the given first name.
 java.util.Enumeration CustomerFinders.findByLastName(java.lang.String lastName)
          This method gets all entities with the given last name.
 java.util.Enumeration CustomerFinders.findByTitle(java.lang.String title)
          This method gets all entities with the given title.
 void CustomerBean.amend(java.lang.String title, java.lang.String firstName, java.lang.String lastName)
          This method amends the attributes of the Customer entity.
 void CustomerBean.create(java.lang.String ownerId, java.lang.String title, java.lang.String firstName, java.lang.String lastName)
          This method amends the attributes of the Customer entity.
 void Customer.amend(java.lang.String title, java.lang.String firstName, java.lang.String lastName)
          This method amends the attributes of the Customer entity.
 

Uses of ValidationException in com.bankframe.examples.bo.impl.account
 

Methods in com.bankframe.examples.bo.impl.account that throw ValidationException
 Account AccountHome.create(java.lang.String cardNumber, java.lang.String accountNumber, java.lang.String accountName)
          This method creates a new Account entity instance.
 Account AccountHome.findByPrimaryKey(AccountPK primaryKey)
          This method retrieves the Account entity instance for the specified primary key.
 void AccountBMPBean.amend(java.lang.String accountName)
          This method amends the attributes of the Address entity.
 AccountPK AccountBMPBean.ejbCreate(java.lang.String cardNumber, java.lang.String accountNumber, java.lang.String accountName)
          This method initialises a new instance of the Address entity.
 java.util.Enumeration AccountBMPBean.ejbFindAll()
          This method gets all the instances of the Address entity.
 AccountPK AccountBMPBean.ejbFindByPrimaryKey(AccountPK primaryKey)
          This method verifies that the specified Address instance exists.
 

Uses of ValidationException in com.bankframe.examples.bo.impl.address
 

Methods in com.bankframe.examples.bo.impl.address that throw ValidationException
 Address AddressHome.create(java.lang.String ownerId, java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method creates a new Address Entity instance.
 Address AddressHome.findByPrimaryKey(AddressPK primaryKey)
          This method retrieves the Address entity Instance for the specified primary key.
 void AddressBMPBean.amend(java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method amends the attributes of the Address entity.
 AddressPK AddressBMPBean.ejbCreate(java.lang.String ownerId, java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method initialises a new instance of the Address entity.
 java.util.Enumeration AddressBMPBean.ejbFindAll()
          This method gets all instances of the Address entities.
 java.util.Enumeration AddressBMPBean.ejbFindByCountry(java.lang.String country)
          This method gets all instance of the Address entity with the specified country value.
 java.util.Enumeration AddressBMPBean.ejbFindByPostCode(java.lang.String postCode)
          This method finds all EJBs with the given post code.
 AddressPK AddressBMPBean.ejbFindByPrimaryKey(AddressPK primaryKey)
          This method verifies that the specified Address instance exists.
 

Uses of ValidationException in com.bankframe.examples.bo.impl.customer
 

Methods in com.bankframe.examples.bo.impl.customer that throw ValidationException
 Customer CustomerHome.create(java.lang.String ownerId, java.lang.String title, java.lang.String firstName, java.lang.String lastName)
          This method creates a new customer entity instance.
 Customer CustomerHome.findByPrimaryKey(CustomerPK primaryKey)
          This method get a entity instance that is identified by the given primary key.
 void CustomerBMPBean.amend(java.lang.String title, java.lang.String firstName, java.lang.String lastName)
          This method amends the attributes of the customer entity.
 Address CustomerBMPBean.amendAddress(java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method amends the address entity associated with this customer entity.
 CustomerPK CustomerBMPBean.ejbCreate(java.lang.String ownerId, java.lang.String title, java.lang.String firstName, java.lang.String lastName)
          This method initialises a new instance of the customer entity.
 java.util.Enumeration CustomerBMPBean.ejbFindAll()
          This method gets all instances of this EJB
 java.util.Enumeration CustomerBMPBean.ejbFindByFirstName(java.lang.String firstName)
          This method get all instance of this EJB with the given first name
 java.util.Enumeration CustomerBMPBean.ejbFindByLastName(java.lang.String lastName)
          This method get all instance of this EJB with the given last name
 CustomerPK CustomerBMPBean.ejbFindByPrimaryKey(CustomerPK primaryKey)
          This method verifies that the specified customer instance exists.
 java.util.Enumeration CustomerBMPBean.ejbFindByTitle(java.lang.String title)
          This method get all instance of this EJB with the given title.
 Address CustomerBean.amendAddress(java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method amends the Address entity associated with this Customer entity.
 Address Customer.amendAddress(java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method amends the Address Entity associated with this Customer entity.
 

Uses of ValidationException in com.bankframe.examples.bp.accountsearch
 

Methods in com.bankframe.examples.bp.accountsearch that throw ValidationException
 java.util.Enumeration AccountSearchBean.findAllAccounts()
          This method retrieves all account instances.
 java.util.Enumeration AccountSearch.findAllAccounts()
          This method retrieves all account entities.
 

Uses of ValidationException in com.bankframe.examples.bp.customersearch
 

Methods in com.bankframe.examples.bp.customersearch that throw ValidationException
 Customer CustomerSearchBean.amendCustomer(java.lang.String ownerId, java.lang.String title, java.lang.String firstName, java.lang.String lastName)
          This method amends all the details of the specified customer.
 Address CustomerSearchBean.amendCustomerAddress(java.lang.String ownerId, java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method amends the address details of the specified customer.
 java.util.Enumeration CustomerSearchBean.findAllCustomers()
          This method retrieves all Customer entities.
 java.util.Enumeration CustomerSearchBean.findCustomersByLastName(java.lang.String lastName)
          This method retrieves all Customer entities with the specified last name.
 Customer CustomerSearchBean.getCustomer(java.lang.String ownerId)
          This method retrieves the Customer entity for the specified ownerId.
 Address CustomerSearchBean.getCustomerAddress(java.lang.String ownerId)
          This method retrieves the Address entity associated with the specified Customer.
 Customer CustomerSearch.amendCustomer(java.lang.String ownerId, java.lang.String title, java.lang.String firstName, java.lang.String lastName)
          This method amends all the details of the specified customer.
 Address CustomerSearch.amendCustomerAddress(java.lang.String ownerId, java.lang.String addressLine1, java.lang.String addressLine2, java.lang.String addressLine3, java.lang.String addressLine4, java.lang.String country, java.lang.String postCode)
          This method amends the address details of the specified customer.
 java.util.Enumeration CustomerSearch.findAllCustomers()
          This method retrieves all Customer entities.
 java.util.Enumeration CustomerSearch.findCustomersByLastName(java.lang.String lastName)
          This method retrieves all Customer entities with the specified last name.
 Customer CustomerSearch.getCustomer(java.lang.String ownerId)
          This method retrieves the Customer entity for the specified ownerId.
 Address CustomerSearch.getCustomerAddress(java.lang.String ownerId)
          This method retrieves the Address entity associated with the specified Customer.
 

Uses of ValidationException in com.bankframe.examples.bp.impl.accountsearch
 

Methods in com.bankframe.examples.bp.impl.accountsearch that throw ValidationException
 java.util.Vector AccountSearchBean.getAllAccounts()
          This method retrieves all Account entities.
 

Uses of ValidationException in com.bankframe.examples.bp.impl.customersearch
 

Methods in com.bankframe.examples.bp.impl.customersearch that throw ValidationException
 java.util.Vector CustomerSearchBean.amendCustomer(DataPacket data)
          This method amends all the details of the specified customer.
 java.util.Vector CustomerSearchBean.txnHandlerBrokerAmendCustomer(DataPacket data)
          This method amends all the details of the specified customer using TxnHandlerBroker.
 java.util.Vector CustomerSearchBean.txnHandlerBrokerAmendCustomerAddress(DataPacket data)
          This method amends the address details of the specified customer using TxnHandlerBroker If TxnHandlerBroker.amend() returns a Vector with DataPacket attribute STATUS = OK then return the amended datapacket values.
 java.util.Vector CustomerSearchBean.amendCustomerAddress(DataPacket data)
          This method amends the address details of the specified customer.
 java.util.Vector CustomerSearchBean.findCustomersByLastName(DataPacket data)
          This method retrieves all Customer entities with the specified last name.
 java.util.Vector CustomerSearchBean.getAllCustomers()
          This method retrieves all Customer entities.
 java.util.Vector CustomerSearchBean.getCustomer(DataPacket data)
          This method retrieves the Customer entity for the specified ownerId.
 java.util.Vector CustomerSearchBean.getCustomerAddress(DataPacket data)
          This method retrieves the Address entity associated with the specified Customer
 

Uses of ValidationException in com.bankframe.examples.txnhandler.connector.coboltest
 

Methods in com.bankframe.examples.txnhandler.connector.coboltest that throw ValidationException
 byte[] CobolTestData.processTransaction(byte[] request)
          This method process a request and returns the appropriate response
 

Uses of ValidationException in com.bankframe.fe.statemachine.ext.apploaders
 

Methods in com.bankframe.fe.statemachine.ext.apploaders that throw ValidationException
 void ValidationRule.executeValidate(Inputs inputs, java.lang.Object value)
           
 

Uses of ValidationException in com.bankframe.fe.statemachine.ext.validation
 

Methods in com.bankframe.fe.statemachine.ext.validation that throw ValidationException
static void StandardValidations.validateAttribute(boolean mandatory, boolean exactLength, int minimumLength, int maximumLength, Validate validate, java.lang.Object value, java.lang.String valuesName)
          This method is used to validate an attribute.
static void StandardValidations.validateAttribute(boolean mandatory, boolean exactLength, int maximumLength, Validate validate, java.lang.Object value, java.lang.String valuesName)
          This method is used to validate an attribute.
static void StandardValidations.validateForLettersDigitsOrWhitespaceOnly(java.lang.String value, java.lang.String valuesName)
          This method validates values letters, digits and whitespace only.
static void StandardValidations.validateForMandatory(java.lang.Object value, java.lang.String valuesName)
          This method validates values for mandatory.
static void StandardValidations.validateForMandatoryAndForValue(boolean isMandatory, java.lang.String key, java.lang.Object value, java.lang.String valuesName)
          This method validates values for mandatory and validates values against the Constants class.
 java.net.URL PropertiesReader.loadPropertiesURL(java.lang.String name)
          This method loads the properties for a given file name.
static java.lang.String Constants.getDescriptionForValue(java.lang.String key, java.lang.Object code)
          This method will return a description for a value given the constant key.
static int Constants.getLength(java.lang.String key)
          This method gets the length for a given length key.
static java.lang.String Constants.getPattern(java.lang.String key)
          This method gets the pattern for a given pattern key.
static java.lang.String Constants.getText(java.lang.String key)
          This method gets the text for a given text key.
static java.util.Vector Constants.getValueDescriptionsList(java.lang.String key)
          This method returns a Vector containing all the constant values for a particular key
static java.lang.Object Constants.getValueForDescription(java.lang.String key, java.lang.String desc)
          This method will return a value for a description given the constant key.
static java.lang.Object Constants.getValueInList(int positionNo, java.lang.String key)
          This method returns the value in a constants list for a given key given it's position.
static java.util.Vector Constants.getValueList(java.lang.String key)
          This method returns a Vector containing all the constant values for a particular key
static boolean Constants.isAValidValue(java.lang.String key, java.lang.Object value)
          This method checks to see if a value is a valid constant value
static void Constants.refresh()
          This method forces a complete refresh of the constants.
 

Uses of ValidationException in com.bankframe.services.route
 

Methods in com.bankframe.services.route that throw ValidationException
static void RouteValidator.validateJndiName(java.lang.String jndiName)
          This method validates the JNDI name, it must be non null and non-empty and no more than fifty characters in length.
static void RouteValidator.validateRequestId(java.lang.String requestId)
          This method validates the requestId, it must be non null and non-empty and no more that five characters in length.
 

Uses of ValidationException in com.bankframe.validation
 

Methods in com.bankframe.validation that throw ValidationException
static int DateValidator.compare(java.util.Date dateOrTime1, java.util.Date dateOrTime2)
          This method allows you to compare date objects param dateOrTime1 Date the first date/time object param dateOrTime2 Date the date/time object to compare the first date/time object to
static boolean DateValidator.isValid(java.lang.String pattern, java.lang.String dateOrTime)
          Validates date or time string against an accepted pattern
static int DateValidator.compareDateOnly(java.util.Date date1, java.util.Date date2)
          This method compares the day month year portion of the dates ignoring the hours minutes and seconds.
static int DateValidator.compareTimeOnly(java.sql.Time time1, java.sql.Time time2)
          This method the compares hours minutes and seconds portion of the times ignoring the days months years.
static java.util.Date DateConvertor.getDate(java.lang.String pattern, java.lang.String date)
          Method to convert a date string to an object
static java.lang.String DateConvertor.getString(java.lang.String pattern, java.util.Date dateOrTime)
          Method to convert a Date object to a string
static java.sql.Time DateConvertor.getTime(java.lang.String pattern, java.lang.String time)
          Method to convert a time string to a Time object
static java.sql.Timestamp DateConvertor.getTimestamp(java.lang.String pattern, java.lang.String timestamp)
          Method to convert a date object to a string object
static java.lang.Boolean DataTypeConvertor.getBoolean(java.lang.String value)
          This method converts a String value to a Boolean value
static java.lang.Integer DataTypeConvertor.getInteger(java.lang.String value)
          This method converts a String value to an Integer value
static java.lang.Float DataTypeConvertor.getFloat(java.lang.String value)
          This method converts a String value to a Float value
static java.lang.Double DataTypeConvertor.getDouble(java.lang.String value)
          This method converts a String value to a Double value
static java.lang.String DataTypeConvertor.getString(java.lang.Object value)
          This method converts an Object value to a String value
static java.lang.String DataTypeConvertor.padString(java.lang.String value, char padChar, int length, boolean padRight)
          This method returns a String padded with the specified amount of padding characters, to the left or to the right
 



Copyright © 2004 Siebel Systems, Inc. All rights reserved.