Fix sonar issues with visibility
[policy/xacml-pdp.git] / applications / common / src / main / java / org / onap / policy / pdp / xacml / application / common / matchable / MatchablePropertyTypeBase.java
index b98ef9f..3133978 100644 (file)
@@ -32,11 +32,11 @@ public abstract class MatchablePropertyTypeBase<T> implements MatchablePropertyT
     private ToscaProperty toscaProperty;
     private ToscaSchemaDefinition toscaSchema;
 
-    public MatchablePropertyTypeBase(ToscaProperty inProperty) {
+    protected MatchablePropertyTypeBase(ToscaProperty inProperty) {
         this.toscaProperty = inProperty;
     }
 
-    public MatchablePropertyTypeBase(ToscaSchemaDefinition inSchema) {
+    protected MatchablePropertyTypeBase(ToscaSchemaDefinition inSchema) {
         this.toscaSchema = inSchema;
     }