blob: e941a41f14a9ebeacf1b8f4988d868e9a3aae0d2 [file] [log] [blame]
/*
* 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;
public class RelationshipTypeDataBinderImpl implements RelationshipTypeDataBinder {
protected final EntityFactory entityFactory;
public RelationshipTypeDataBinderImpl(final EntityFactory entityFactory) {
this.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;
}
}