-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1cbde24
commit 2cb33dc
Showing
101 changed files
with
1,656 additions
and
1,232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+3.17 KB
build/web/WEB-INF/classes/entity/Admin.class → build/web/WEB-INF/classes/model/Admin.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> | ||
<!-- Generated Nov 11, 2021 2:40:31 PM by Hibernate Tools 4.3.1 --> | ||
<hibernate-mapping> | ||
<class catalog="manage_movie" name="model.Admin" optimistic-lock="version" table="admin"> | ||
<id name="idAdmin" type="java.lang.Integer"> | ||
<column name="id_admin"/> | ||
<generator class="identity"/> | ||
</id> | ||
<property name="fullName" type="string"> | ||
<column length="30" name="fullName"/> | ||
</property> | ||
<property name="username" type="string"> | ||
<column length="30" name="username" unique="true"/> | ||
</property> | ||
<property name="password" type="string"> | ||
<column length="30" name="password"/> | ||
</property> | ||
<property name="birthday" type="date"> | ||
<column length="10" name="birthday"/> | ||
</property> | ||
<property name="gmail" type="string"> | ||
<column length="30" name="gmail"/> | ||
</property> | ||
<property name="sdt" type="java.lang.Integer"> | ||
<column name="sdt"/> | ||
</property> | ||
<set fetch="select" inverse="true" lazy="true" name="movieAdmins" table="movie_admin"> | ||
<key> | ||
<column name="id_admin"/> | ||
</key> | ||
<one-to-many class="model.MovieAdmin"/> | ||
</set> | ||
</class> | ||
</hibernate-mapping> |
Binary file renamed
BIN
+1.51 KB
...web/WEB-INF/classes/entity/Category.class → .../web/WEB-INF/classes/model/Category.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> | ||
<!-- Generated Nov 11, 2021 2:40:31 PM by Hibernate Tools 4.3.1 --> | ||
<hibernate-mapping> | ||
<class catalog="manage_movie" name="model.Category" optimistic-lock="version" table="category"> | ||
<id name="idCategory" type="java.lang.Integer"> | ||
<column name="id_category"/> | ||
<generator class="identity"/> | ||
</id> | ||
<property name="name" type="string"> | ||
<column length="40" name="name" not-null="true" unique="true"/> | ||
</property> | ||
<set fetch="select" inverse="true" lazy="true" name="categoryMoives" table="category_moive"> | ||
<key> | ||
<column name="id_category"/> | ||
</key> | ||
<one-to-many class="model.CategoryMoive"/> | ||
</set> | ||
</class> | ||
</hibernate-mapping> |
Binary file renamed
BIN
+1.41 KB
...EB-INF/classes/entity/CategoryMoive.class → ...WEB-INF/classes/model/CategoryMoive.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> | ||
<!-- Generated Nov 11, 2021 2:40:31 PM by Hibernate Tools 4.3.1 --> | ||
<hibernate-mapping> | ||
<class catalog="manage_movie" name="model.CategoryMoive" optimistic-lock="version" table="category_moive"> | ||
<id name="idCategoryMoive" type="java.lang.Integer"> | ||
<column name="id_categoryMoive"/> | ||
<generator class="identity"/> | ||
</id> | ||
<many-to-one class="model.Category" fetch="select" name="category"> | ||
<column name="id_category"/> | ||
</many-to-one> | ||
<many-to-one class="model.Movie" fetch="select" name="movie"> | ||
<column name="id_movie"/> | ||
</many-to-one> | ||
</class> | ||
</hibernate-mapping> |
Binary file renamed
BIN
+1.49 KB
...web/WEB-INF/classes/entity/Filmtype.class → .../web/WEB-INF/classes/model/Filmtype.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> | ||
<!-- Generated Nov 11, 2021 2:40:31 PM by Hibernate Tools 4.3.1 --> | ||
<hibernate-mapping> | ||
<class catalog="manage_movie" name="model.Filmtype" optimistic-lock="version" table="filmtype"> | ||
<id name="idFilmType" type="java.lang.Integer"> | ||
<column name="id_filmType"/> | ||
<generator class="identity"/> | ||
</id> | ||
<property name="name" type="string"> | ||
<column length="40" name="name" not-null="true" unique="true"/> | ||
</property> | ||
<set fetch="select" inverse="true" lazy="true" name="movies" table="movie"> | ||
<key> | ||
<column name="id_filmType" not-null="true"/> | ||
</key> | ||
<one-to-many class="model.Movie"/> | ||
</set> | ||
</class> | ||
</hibernate-mapping> |
Binary file not shown.
Binary file renamed
BIN
+5.12 KB
build/web/WEB-INF/classes/entity/Movie.class → build/web/WEB-INF/classes/model/Movie.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> | ||
<!-- Generated Nov 11, 2021 2:40:31 PM by Hibernate Tools 4.3.1 --> | ||
<hibernate-mapping> | ||
<class catalog="manage_movie" name="model.Movie" optimistic-lock="version" table="movie"> | ||
<id name="idMovie" type="java.lang.Integer"> | ||
<column name="id_movie"/> | ||
<generator class="identity"/> | ||
</id> | ||
<many-to-one class="model.Filmtype" fetch="select" name="filmtype"> | ||
<column name="id_filmType" not-null="true"/> | ||
</many-to-one> | ||
<property name="nameMovie" type="string"> | ||
<column length="100" name="nameMovie" not-null="true" unique="true"/> | ||
</property> | ||
<property name="country" type="string"> | ||
<column length="50" name="country"/> | ||
</property> | ||
<property name="director" type="string"> | ||
<column length="30" name="director"/> | ||
</property> | ||
<property name="timeMovie" type="time"> | ||
<column length="8" name="timeMovie"/> | ||
</property> | ||
<property name="statusMovie" type="string"> | ||
<column length="15" name="statusMovie"/> | ||
</property> | ||
<property name="urlimage" type="string"> | ||
<column length="65535" name="urlimage"/> | ||
</property> | ||
<property name="content" type="string"> | ||
<column length="65535" name="content"/> | ||
</property> | ||
<property name="yearOfManufacture" type="java.lang.Integer"> | ||
<column name="yearOfManufacture"/> | ||
</property> | ||
<property name="dateAdd" type="timestamp"> | ||
<column length="19" name="dateAdd"/> | ||
</property> | ||
<set fetch="select" inverse="true" lazy="true" name="movieAdmins" table="movie_admin"> | ||
<key> | ||
<column name="id_movie"/> | ||
</key> | ||
<one-to-many class="model.MovieAdmin"/> | ||
</set> | ||
<set fetch="select" inverse="true" lazy="true" name="categoryMoives" table="category_moive"> | ||
<key> | ||
<column name="id_movie"/> | ||
</key> | ||
<one-to-many class="model.CategoryMoive"/> | ||
</set> | ||
</class> | ||
</hibernate-mapping> |
Binary file renamed
BIN
+1.74 KB
...b/WEB-INF/classes/entity/MovieAdmin.class → ...eb/WEB-INF/classes/model/MovieAdmin.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> | ||
<!-- Generated Nov 11, 2021 2:40:31 PM by Hibernate Tools 4.3.1 --> | ||
<hibernate-mapping> | ||
<class catalog="manage_movie" name="model.MovieAdmin" optimistic-lock="version" table="movie_admin"> | ||
<id name="idMovieAdmin" type="java.lang.Integer"> | ||
<column name="id_movieAdmin"/> | ||
<generator class="identity"/> | ||
</id> | ||
<many-to-one class="model.Admin" fetch="select" name="admin"> | ||
<column name="id_admin"/> | ||
</many-to-one> | ||
<many-to-one class="model.Movie" fetch="select" name="movie"> | ||
<column name="id_movie"/> | ||
</many-to-one> | ||
<property name="dateAction" type="date"> | ||
<column length="10" name="dateAction"/> | ||
</property> | ||
<property name="title" type="string"> | ||
<column length="65535" name="title"/> | ||
</property> | ||
</class> | ||
</hibernate-mapping> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+1.77 KB
...B-INF/classes/model/ModelMovieAdmin.class → ...F/classes/service/ServiceMovieAdmin.class
Binary file not shown.
Binary file renamed
BIN
+1.64 KB
...eb/WEB-INF/classes/model/ModelMovie.class → ...B-INF/classes/service/ServicelMovie.class
Binary file not shown.
Oops, something went wrong.