Java tutorial
/* * Copyright 2018 B2i Healthcare Pte Ltd, http://b2i.sg * * 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. */ package com.b2international.snowowl.snomed.datastore.request; import java.util.Set; import com.b2international.snowowl.core.domain.TransactionContext; import com.b2international.snowowl.snomed.common.SnomedRf2Headers; import com.b2international.snowowl.snomed.core.store.SnomedComponents; import com.b2international.snowowl.snomed.datastore.id.SnomedIdentifiers; import com.b2international.snowowl.snomed.snomedrefset.SnomedRefSet; import com.b2international.snowowl.snomed.snomedrefset.SnomedRefSetType; import com.b2international.snowowl.snomed.snomedrefset.SnomedSimpleMapRefSetMember; import com.google.common.base.Strings; import com.google.common.collect.ImmutableSet; import com.google.common.collect.ImmutableSet.Builder; /** * @since 6.5 */ final class SnomedSimpleMapMemberWithDescriptionCreateDelegate extends SnomedRefSetMemberCreateDelegate { SnomedSimpleMapMemberWithDescriptionCreateDelegate(SnomedRefSetMemberCreateRequest request) { super(request); } @Override public String execute(SnomedRefSet refSet, TransactionContext context) { checkRefSetType(refSet, SnomedRefSetType.SIMPLE_MAP_WITH_DESCRIPTION); checkReferencedComponent(refSet); checkNonEmptyProperty(refSet, SnomedRf2Headers.FIELD_MAP_TARGET); checkComponentExists(refSet, context, SnomedRf2Headers.FIELD_MODULE_ID, getModuleId()); checkComponentExists(refSet, context, SnomedRf2Headers.FIELD_REFERENCED_COMPONENT_ID, getReferencedComponentId()); if (SnomedIdentifiers.isValid(getProperty(SnomedRf2Headers.FIELD_MAP_TARGET))) { checkComponentExists(refSet, context, SnomedRf2Headers.FIELD_MAP_TARGET); } SnomedSimpleMapRefSetMember member = SnomedComponents.newSimpleMapMember().withId(getId()) .withActive(isActive()).withReferencedComponent(getReferencedComponentId()) .withModule(getModuleId()).withRefSet(getReferenceSetId()) .withMapTargetId(getComponentId(SnomedRf2Headers.FIELD_MAP_TARGET)) .withMapTargetDescription( Strings.nullToEmpty(getProperty(SnomedRf2Headers.FIELD_MAP_TARGET_DESCRIPTION))) .addTo(context); return member.getUuid(); } @Override public Set<String> getRequiredComponentIds() { Builder<String> requiredComponentIds = ImmutableSet.<String>builder().add(getModuleId()) .add(getReferencedComponentId()); if (SnomedIdentifiers.isValid(getProperty(SnomedRf2Headers.FIELD_MAP_TARGET))) { requiredComponentIds.add(getComponentId(SnomedRf2Headers.FIELD_MAP_TARGET)); } return requiredComponentIds.build(); } }