]> git.mxchange.org Git - jphone-core.git/commitdiff
Continued a bit:
authorRoland Haeder <roland@mxchange.org>
Thu, 7 Apr 2016 09:27:36 +0000 (11:27 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 7 Apr 2016 09:27:36 +0000 (11:27 +0200)
- size only applies for strings, no need here (cleanup)
- updated jar(s)

lib/jcountry-core.jar
src/org/mxchange/jphone/phonenumbers/cellphone/CellphoneNumber.java
src/org/mxchange/jphone/phonenumbers/fax/FaxNumber.java
src/org/mxchange/jphone/phonenumbers/landline/LandLineNumber.java
src/org/mxchange/jphone/phonenumbers/smsprovider/CellphoneProvider.java

index 49be2e4aa7b60c8ea2109ed5fbe2002af4911630..01a8041b9818458cfcaf5783e01d872b7be6d95c 100644 (file)
Binary files a/lib/jcountry-core.jar and b/lib/jcountry-core.jar differ
index 987ea0a966809427c04032bc640fcd3ffba05375..55a8c0be0ded164dd773db686fd558667d5495e2 100644 (file)
@@ -68,14 +68,14 @@ public class CellphoneNumber implements DialableCellphoneNumber {
         */
        @Id
        @GeneratedValue (strategy = GenerationType.IDENTITY)
-       @Column (name = "cellphone_id", length = 20, nullable = false, updatable = false)
+       @Column (name = "cellphone_id", nullable = false, updatable = false)
        private Long phoneId;
 
        /**
         * Number without prefix to dial
         */
        @Basic (optional = false)
-       @Column (name = "cellphone_number", length = 20, nullable = false)
+       @Column (name = "cellphone_number", nullable = false)
        private Long phoneNumber;
 
        /**
index c49c11fe6b163688ba5880017cb2ab1df3c422db..904235345eef903681014d9e48443f1078cbdbee 100644 (file)
@@ -74,14 +74,14 @@ public class FaxNumber implements DialableFaxNumber {
         */
        @Id
        @GeneratedValue (strategy = GenerationType.IDENTITY)
-       @Column (name = "fax_id", length = 20, nullable = false, updatable = false)
+       @Column (name = "fax_id", nullable = false, updatable = false)
        private Long phoneId;
 
        /**
         * Fax number without prefix
         */
        @Basic (optional = false)
-       @Column (name = "fax_number", length = 20, nullable = false)
+       @Column (name = "fax_number", nullable = false)
        private Long phoneNumber;
 
        /**
index 2f192bb465873171050e16eeb19f8d47147b4aa9..6a18fc09ada9aa43a4504929635475b9ef6ec721 100644 (file)
@@ -81,7 +81,7 @@ public class LandLineNumber implements DialableLandLineNumber {
         * Phone number with out dial prefix
         */
        @Basic (optional = false)
-       @Column (name = "phone_number", length = 20, nullable = false)
+       @Column (name = "phone_number", nullable = false)
        private Long phoneNumber;
 
        /**
index a35e266051756e68e9f97f1d364d66f9fddb6abd..19506928809408a2d5f919d227286373ee575b9c 100644 (file)
@@ -79,7 +79,7 @@ public class CellphoneProvider implements SmsProvider {
         */
        @Id
        @GeneratedValue (strategy = GenerationType.IDENTITY)
-       @Column (name = "provider_id", length = 20, nullable = false, updatable = false)
+       @Column (name = "provider_id", nullable = false, updatable = false)
        private Long providerId;
 
        /**