This is an automated email from the ASF dual-hosted git repository.

apoorvnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/master by this push:
     new b2a77d0  Missing AtlasEntityDef constructor for serviceType
     new dcf0404  Merge pull request #33 from ZepHakase22/miss-service-type
b2a77d0 is described below

commit b2a77d0f657e321c6e2d54f73ac9b6a0fec59cad
Author: Diego Marino Monetti <dmari...@gmail.com>
AuthorDate: Fri Mar 22 12:48:06 2019 +0100

    Missing AtlasEntityDef constructor for serviceType
---
 .../apache/atlas/model/typedef/AtlasEntityDef.java | 39 ++++++++++++++++++----
 1 file changed, 33 insertions(+), 6 deletions(-)

diff --git 
a/intg/src/main/java/org/apache/atlas/model/typedef/AtlasEntityDef.java 
b/intg/src/main/java/org/apache/atlas/model/typedef/AtlasEntityDef.java
index 36bb3df..29dbf09 100644
--- a/intg/src/main/java/org/apache/atlas/model/typedef/AtlasEntityDef.java
+++ b/intg/src/main/java/org/apache/atlas/model/typedef/AtlasEntityDef.java
@@ -22,6 +22,7 @@ import com.fasterxml.jackson.annotation.JsonAutoDetect;
 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
 
+
 import org.apache.atlas.model.PList;
 import org.apache.atlas.model.SearchFilter.SortType;
 import org.apache.atlas.model.TypeCategory;
@@ -60,29 +61,44 @@ public class AtlasEntityDef extends AtlasStructDef 
implements java.io.Serializab
 
 
     public AtlasEntityDef() {
-        this(null, null, null, null, null, null);
+        this(null, null, null, null, null, null, null);
     }
 
     public AtlasEntityDef(String name) {
-        this(name, null, null, null, null, null);
+        this(name, null, null, null, null, null, null);
     }
 
     public AtlasEntityDef(String name, String description) {
-        this(name, description, null, null, null, null);
+        this(name, description, null, null, null, null, null);
     }
 
     public AtlasEntityDef(String name, String description, String typeVersion) 
{
-        this(name, description, typeVersion, null, null, null);
+        this(name, description, typeVersion, null, null, null, null);
+    }
+    
+    public AtlasEntityDef(String name, String description, String typeVersion, 
String serviceType) {
+        this(name, description, typeVersion, serviceType, null, null, null);
     }
 
+
     public AtlasEntityDef(String name, String description, String typeVersion, 
List<AtlasAttributeDef> attributeDefs) {
-        this(name, description, typeVersion, attributeDefs, null, null);
+        this(name, description, typeVersion, attributeDefs, null);
+    }
+    
+    public AtlasEntityDef(String name, String description, String typeVersion, 
String serviceType, List<AtlasAttributeDef> attributeDefs) {
+        this(name, description, typeVersion, serviceType, attributeDefs, null, 
null);
     }
 
     public AtlasEntityDef(String name, String description, String typeVersion, 
List<AtlasAttributeDef> attributeDefs,
                           Set<String> superTypes) {
         this(name, description, typeVersion, attributeDefs, superTypes, null);
     }
+    
+    public AtlasEntityDef(String name, String description, String typeVersion, 
String serviceType, List<AtlasAttributeDef> attributeDefs,
+            Set<String> superTypes) {
+       this(name, description, typeVersion, serviceType, attributeDefs, 
superTypes, null);
+    }
+
 
     public AtlasEntityDef(String name, String description, String typeVersion, 
List<AtlasAttributeDef> attributeDefs,
                           Set<String> superTypes, Map<String, String> options) 
{
@@ -90,6 +106,14 @@ public class AtlasEntityDef extends AtlasStructDef 
implements java.io.Serializab
 
         setSuperTypes(superTypes);
     }
+    
+    public AtlasEntityDef(String name, String description, String typeVersion, 
String serviceType, List<AtlasAttributeDef> attributeDefs,
+            Set<String> superTypes, Map<String, String> options) {
+       super(TypeCategory.ENTITY, name, description, typeVersion, 
attributeDefs, serviceType, options);
+
+               setSuperTypes(superTypes);
+       }
+
 
     public AtlasEntityDef(AtlasEntityDef other) {
         super(other);
@@ -97,7 +121,10 @@ public class AtlasEntityDef extends AtlasStructDef 
implements java.io.Serializab
         setSuperTypes(other != null ? other.getSuperTypes() : null);
     }
 
-    public Set<String> getSuperTypes() {
+
+
+
+       public Set<String> getSuperTypes() {
         return superTypes;
     }
 

Reply via email to