1 /******************************************************************************
2 * Role.java - Map an actor to a movie Role
3 * $Id: Role.java,v 1.1 2014/10/31 06:53:26 dick Exp $
4 *
5 * BuckoVidLib - The BuckoSoft Video Library
6 * Copyright(c) 2014 - Dick Balaska
7 *
8 * $Log: Role.java,v $
9 * Revision 1.1 2014/10/31 06:53:26 dick
10 * Map an actor to a movie Role
11 *
12 */
13 package com.buckosoft.BuckoVidLib.domain;
14
15 /** Map an actor to a movie Role
16 * @author dick
17 * @since 2014-10-31
18 */
19 public class Role {
20 private int id;
21 private int videoId;
22 private int actorId;
23 private String role;
24 /**
25 * @return the id
26 */
27 public int getId() {
28 return id;
29 }
30 /**
31 * @param id the id to set
32 */
33 public void setId(int id) {
34 this.id = id;
35 }
36 /**
37 * @return the videoId
38 */
39 public int getVideoId() {
40 return videoId;
41 }
42 /**
43 * @param videoId the videoId to set
44 */
45 public void setVideoId(int videoId) {
46 this.videoId = videoId;
47 }
48 /**
49 * @return the actorId
50 */
51 public int getActorId() {
52 return actorId;
53 }
54 /**
55 * @param actorId the actorId to set
56 */
57 public void setActorId(int actorId) {
58 this.actorId = actorId;
59 }
60 /**
61 * @return the role
62 */
63 public String getRole() {
64 return role;
65 }
66 /**
67 * @param role the role to set
68 */
69 public void setRole(String role) {
70 this.role = role;
71 }
72
73
74 }