iresourceauditor is in hapi-fhir-base not dstu

This commit is contained in:
lmds1 2014-11-10 17:55:18 -05:00
parent f303e174fc
commit 025db56fe9
1 changed files with 0 additions and 46 deletions

View File

@ -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<T extends IResource> {
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<ObjectDetail> getDetail();
public SecurityEventObjectSensitivityEnum getSensitivity();
}