Springboot 2.0 upgrade
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / SubsystemHealthcheckResponse.java
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+package org.onap.so.apihandlerinfra;
 
-package org.onap.so.db.catalog.data.projections;
+import java.io.Serializable;
 
+public class SubsystemHealthcheckResponse implements Serializable {
+       private static final long serialVersionUID = 1L;
+       private String status;
 
-import java.util.List;
-import java.util.Map;
+       public String getStatus() {
+               return status;
+       }
 
-import org.onap.so.db.catalog.beans.Service;
-import org.onap.so.db.catalog.beans.ServiceRecipe;
-import org.springframework.data.rest.core.config.Projection;
+       public void setStatus(String status) {
+               this.status = status;
+       }
 
-@Projection(name = "InlineService", types = { Service.class }) 
-public interface InlineService { 
-
-  String getModelName(); 
-  String getDescription(); 
-  String getCreated(); 
-  String getModelUUID(); 
-  String getModelInvariantUUID(); 
-  String getModelVersion();   
-  String getServiceType();    
-  String getServiceRole();   
-  String getEnvironmentContext();    
-  String getWorkloadContext();   
-
-  List<InlineNetworks> getNetworkCustomizations();  
-
-  List<InlineVnf> getVnfCustomizations();  
-
-  List<InlineAllottedResources> getAllottedCustomizations();  
-
-  Map<String, ServiceRecipe> getRecipes ();
-}
\ No newline at end of file
+}