From 025db56fe9ef360ee323bb29bdc8e5c46eb285b3 Mon Sep 17 00:00:00 2001 From: lmds1 Date: Mon, 10 Nov 2014 17:55:18 -0500 Subject: [PATCH] iresourceauditor is in hapi-fhir-base not dstu --- .../rest/server/audit/IResourceAuditor.java | 46 ------------------- 1 file changed, 46 deletions(-) delete mode 100644 hapi-fhir-structures-dstu/src/main/java/ca/uhn/fhir/rest/server/audit/IResourceAuditor.java diff --git a/hapi-fhir-structures-dstu/src/main/java/ca/uhn/fhir/rest/server/audit/IResourceAuditor.java b/hapi-fhir-structures-dstu/src/main/java/ca/uhn/fhir/rest/server/audit/IResourceAuditor.java deleted file mode 100644 index d1a6a41498e..00000000000 --- a/hapi-fhir-structures-dstu/src/main/java/ca/uhn/fhir/rest/server/audit/IResourceAuditor.java +++ /dev/null @@ -1,46 +0,0 @@ -package ca.uhn.fhir.rest.server.audit; - -/* - * #%L - * HAPI FHIR Structures - DSTU (FHIR 0.80) - * %% - * 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 java.util.List; - -import ca.uhn.fhir.model.api.IResource; -import ca.uhn.fhir.model.dstu.composite.IdentifierDt; -import ca.uhn.fhir.model.dstu.resource.SecurityEvent.ObjectDetail; -import ca.uhn.fhir.model.dstu.valueset.SecurityEventObjectSensitivityEnum; -import ca.uhn.fhir.model.dstu.valueset.SecurityEventObjectTypeEnum; - - -public interface IResourceAuditor { - - public T getResource(); - public void setResource(T resource); - - public boolean isAuditable(); - - public String getName(); - public IdentifierDt getIdentifier(); - public SecurityEventObjectTypeEnum getType(); - public String getDescription(); - public List getDetail(); - public SecurityEventObjectSensitivityEnum getSensitivity(); - -}