Uses of Interface
au.gov.tas.dpiwe.mr.bean.SimpleValidator

Packages that use SimpleValidator
au.gov.tas.dpiwe.mr.bean The au.gov.tas.dpiwe.mr.bean package contains the classes and interfaces supporting the development and deployment of Mr Architecture beans, as well as an example bean, consisting of three components, Bean, BeanHome and BeanObject, and its corresponding implementation components, ThinBean, MrBeanHome and MrBean, as would be created by the DeploymentTool. 
au.gov.tas.dpiwe.mr.bean.trail The au.gov.tas.dpiwe.bean.trail package contains the beans, support classes and interfaces needed to implement command history trails in the architecture. 
au.gov.tas.dpiwe.mr.test The au.gov.tas.dpiwe.mr.test package contains factories, clients, beans, support classes and interfaces used to test the architecture. 
au.gov.tas.dpiwe.mr.test.aggregation The au.gov.tas.dpiwe.mr.test.aggregation package contains a factory and associated beans used to test aggregation relationships within the architecture. 
au.gov.tas.dpiwe.mr.test.nonaggregation The au.gov.tas.dpiwe.mr.test.nonaggregation package contains a factory and associated beans used to test non-aggregation relationships within the architecture. 
 

Uses of SimpleValidator in au.gov.tas.dpiwe.mr.bean
 

Classes in au.gov.tas.dpiwe.mr.bean that implement SimpleValidator
 class Bean
          An example bean written by a bean provider as it should be provided to the DeploymentContainer.
 class DebugBean
          All the methods herein (except containerChanged(), getBeanObject(), throwEJBException() and simpleValidate()) must be provided to implement an entity bean.
 class MrBean
          This is an implementation of the abstract Bean class which wraps a ThinBean with container-based persistence logic.
 class MrSiameseBean
          The implementation of a siamese bean object.
 class NullBean
          All the methods herein (except containerChanged(), getBeanObject(), throwEJBException() and simpleValidate()) must be provided to implement an entity bean.
 class ThinBean
          This is a simple field-based implementation of the abstract Bean class.
 class ThinSiameseBean
          This is a simple implementation of a siamese bean.
 

Uses of SimpleValidator in au.gov.tas.dpiwe.mr.bean.trail
 

Classes in au.gov.tas.dpiwe.mr.bean.trail that implement SimpleValidator
 class HistoricCommand
          HistoricCommands record commands which have occurred on a trail bean type.
 

Uses of SimpleValidator in au.gov.tas.dpiwe.mr.test
 

Classes in au.gov.tas.dpiwe.mr.test that implement SimpleValidator
 class ExampleBean
          ExampleBean is the sole bean populating Containers produced by ExampleContainerFactory.
 class MrExampleBean
          This is an implementation of the abstract ExampleBean class which wraps a ThinExampleBean with container-based persistence logic.
 class ThinExampleBean
          This is a simple field-based implementation of the abstract ExampleBean class.
 

Uses of SimpleValidator in au.gov.tas.dpiwe.mr.test.aggregation
 

Classes in au.gov.tas.dpiwe.mr.test.aggregation that implement SimpleValidator
 class Board
          Board contains an example of an aggregate one to many relationship to an object with a composite key, Square.
 class Card
          Card is a leaf bean containing basic field types.
 class Deck
          Deck contains an example of an aggregate one to many relationship to an object with a composite key, Card.
 class Deed
          Deed is a leaf bean containing basic field types.
 class MonopolySet
          MonopolySet is the root bean populating Containers produced by AggregationContainerFactory.
 class MrBoard
          This is an implementation of the abstract Board class which wraps a ThinBoard with container-based persistence logic.
 class MrCard
          This is an implementation of the abstract Card class which wraps a ThinCard with container-based persistence logic.
 class MrDeck
          This is an implementation of the abstract Deck class which wraps a ThinDeck with container-based persistence logic.
 class MrDeed
          This is an implementation of the abstract Deed class which wraps a ThinDeed with container-based persistence logic.
 class MrMonopolySet
          This is an implementation of the abstract MonopolySet class which wraps a ThinMonopolySet with container-based persistence logic.
 class MrSquare
          This is an implementation of the abstract Square class which wraps a ThinSquare with container-based persistence logic.
 class MrToken
          This is an implementation of the abstract Token class which wraps a ThinToken with container-based persistence logic.
 class Square
          Square contains an example of an aggregate one to one relationship to an object which shares its primary key, Deed.
 class ThinBoard
          This is a simple field-based implementation of the abstract Board class.
 class ThinCard
          This is a simple field-based implementation of the abstract Card class.
 class ThinDeck
          This is a simple field-based implementation of the abstract Deck class.
 class ThinDeed
          This is a simple field-based implementation of the abstract Deed class.
 class ThinMonopolySet
          This is a simple field-based implementation of the abstract MonopolySet class.
 class ThinSquare
          This is a simple field-based implementation of the abstract Square class.
 class ThinToken
          This is a simple field-based implementation of the abstract Token class.
 class Token
          Token is a leaf bean containing basic field types.
 

Uses of SimpleValidator in au.gov.tas.dpiwe.mr.test.nonaggregation
 

Classes in au.gov.tas.dpiwe.mr.test.nonaggregation that implement SimpleValidator
 class Artist
          Artist is a leaf bean containing an artist name.
 class CD
          CD is the root bean populating Containers produced by CDCatalogueContainerFactory.
 class Credit
          Credit associates a Song with a contributing Artist.
 class MrArtist
          This is an implementation of the abstract Artist class which wraps a ThinArtist with container-based persistence logic.
 class MrCD
          This is an implementation of the abstract CD class which wraps a ThinCD with container-based persistence logic.
 class MrCredit
          This is an implementation of the abstract Credit class which wraps a ThinCredit with container-based persistence logic.
 class MrSong
          This is an implementation of the abstract Song class which wraps a ThinSong with container-based persistence logic.
 class MrTrack
          This is an implementation of the abstract Track class which wraps a ThinTrack with container-based persistence logic.
 class Song
          Songs have many Credits and are realised as many Tracks.
 class ThinArtist
          This is a simple field-based implementation of the abstract Artist class.
 class ThinCD
          This is a simple field-based implementation of the abstract CD class.
 class ThinCredit
          This is a simple field-based implementation of the abstract Credit class.
 class ThinSong
          This is a simple field-based implementation of the abstract Song class.
 class ThinTrack
          This is a simple field-based implementation of the abstract Track class.
 class Track
          Track assoicates a Song with a CD it appears on.