1 /**
2 * Extension point generated initially by Mod4j BusinessDomain DSL by BeanClassExtensionPoint in
3 * JavaBean.xpt at: Mon Aug 11 22:17:09 CEST 2008
4 */
5 package org.company.thesandbox.domain;
6
7 /**
8 * An artist is a Person who has had a role in producing a Record.
9 *
10 * @author Generated by Mod4j BusinessDomain DSL
11 */
12 @SuppressWarnings("serial")
13 public class Artist extends ArtistImplBase {
14
15 /**
16 * Default no-argument constructor for Artist.
17 */
18 protected Artist() {
19 super();
20 }
21
22 /**
23 * Minimal constructor for Artist.
24 *
25 * @param firstName
26 * (string) First name of the person.
27 * @param lastName
28 * (string) Last name of the person.
29 * @param title
30 * (string)
31 */
32 public Artist(final String firstName, final String lastName, final String title) {
33 super(firstName, lastName, title);
34 }
35
36 }