Package ca.uhn.fhir.validation

Source Code of ca.uhn.fhir.validation.ValidationContext$IEncoder

package ca.uhn.fhir.validation;

/*
* #%L
* HAPI FHIR - Core Library
* %%
* Copyright (C) 2014 University Health Network
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/

import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.model.api.Bundle;
import ca.uhn.fhir.model.api.IResource;
import ca.uhn.fhir.model.dstu.resource.OperationOutcome;

class ValidationContext<T> {

  private final IEncoder myEncoder;
  private final FhirContext myFhirContext;
  private OperationOutcome myOperationOutcome;
  private final T myResource;
  private String myXmlEncodedResource;

  private ValidationContext(FhirContext theContext, T theResource, IEncoder theEncoder) {
    myFhirContext = theContext;
    myResource = theResource;
    myEncoder = theEncoder;
  }

  public FhirContext getFhirContext() {
    return myFhirContext;
  }

  public OperationOutcome getOperationOutcome() {
    if (myOperationOutcome == null) {
      myOperationOutcome = new OperationOutcome();
    }
    return myOperationOutcome;
  }

  public T getResource() {
    return myResource;
  }

  public String getXmlEncodedResource() {
    if (myXmlEncodedResource == null) {
      myXmlEncodedResource = myEncoder.encode();
    }
    return myXmlEncodedResource;
  }

  public static ValidationContext<Bundle> forBundle(final FhirContext theContext, final Bundle theBundle) {
    return new ValidationContext<Bundle>(theContext, theBundle, new IEncoder() {
      @Override
      public String encode() {
        return theContext.newXmlParser().encodeBundleToString(theBundle);
      }
    });
  }

  public static ValidationContext<IResource> forResource(final FhirContext theContext, final IResource theResource) {
    return new ValidationContext<IResource>(theContext, theResource, new IEncoder() {
      @Override
      public String encode() {
        return theContext.newXmlParser().encodeResourceToString(theResource);
      }
    });
  }

  public static ValidationContext<IResource> newChild(ValidationContext<Bundle> theContext, IResource theResource) {
    ValidationContext<IResource> retVal = forResource(theContext.getFhirContext(), theResource);
    retVal.myOperationOutcome = theContext.getOperationOutcome();
    return retVal;
  }

  private interface IEncoder {
    String encode();
  }

}
TOP

Related Classes of ca.uhn.fhir.validation.ValidationContext$IEncoder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.