001package org.hl7.fhir.utilities.graphql; 002 003import java.util.ArrayList; 004import java.util.List; 005 006public class Fragment { 007 String name; 008 private String typeCondition; 009 private List<Selection> selectionSet = new ArrayList<Selection>(); 010 private List<Directive> directives = new ArrayList<Directive>(); 011 public String getName() { 012 return name; 013 } 014 public void setName(String name) { 015 this.name = name; 016 } 017 public String getTypeCondition() { 018 return typeCondition; 019 } 020 public void setTypeCondition(String typeCondition) { 021 this.typeCondition = typeCondition; 022 } 023 public List<Selection> getSelectionSet() { 024 return selectionSet; 025 } 026 public List<Directive> getDirectives() { 027 return directives; 028 } 029 030}