/** * <copyright> * </copyright> * * */ package ssl.resource.ssl.mopp; /** * A basic implementation of the ssl.resource.ssl.ISslElementMapping interface. * * @param <ReferenceType> the type of the reference that can be mapped to */ public class SslElementMapping<ReferenceType> implements ssl.resource.ssl.ISslElementMapping<ReferenceType> { private final ReferenceType target; private String identifier; private String warning; public SslElementMapping(String identifier, ReferenceType target, String warning) { super(); this.target = target; this.identifier = identifier; this.warning = warning; } public ReferenceType getTargetElement() { return target; } public String getIdentifier() { return identifier; } public String getWarning() { return warning; } }