/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.syncope.core.provisioning.java.data; import org.apache.syncope.common.lib.to.RelationshipTypeTO; import org.apache.syncope.core.persistence.api.entity.EntityFactory; import org.apache.syncope.core.persistence.api.entity.RelationshipType; import org.apache.syncope.core.provisioning.api.data.RelationshipTypeDataBinder; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @Component public class RelationshipTypeDataBinderImpl implements RelationshipTypeDataBinder { private static final Logger LOG = LoggerFactory.getLogger(RelationshipTypeDataBinder.class); @Autowired private EntityFactory entityFactory; @Override public RelationshipType create(final RelationshipTypeTO relationshipTypeTO) { RelationshipType relationshipType = entityFactory.newEntity(RelationshipType.class); update(relationshipType, relationshipTypeTO); return relationshipType; } @Override public void update(final RelationshipType relationshipType, final RelationshipTypeTO relationshipTypeTO) { if (relationshipType.getKey() == null) { relationshipType.setKey(relationshipTypeTO.getKey()); } relationshipType.setDescription(relationshipTypeTO.getDescription()); } @Override public RelationshipTypeTO getRelationshipTypeTO(final RelationshipType relationshipType) { RelationshipTypeTO relationshipTypeTO = new RelationshipTypeTO(); relationshipTypeTO.setKey(relationshipType.getKey()); relationshipTypeTO.setDescription(relationshipType.getDescription()); return relationshipTypeTO; } }