blob: cb7b8c8f6de64a9587a626a1432e2a48748f83cd [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.AuthProfileTO;
import org.apache.syncope.core.persistence.api.entity.EntityFactory;
import org.apache.syncope.core.persistence.api.entity.auth.AuthProfile;
import org.apache.syncope.core.provisioning.api.data.AuthProfileDataBinder;
public class AuthProfileDataBinderImpl implements AuthProfileDataBinder {
protected final EntityFactory entityFactory;
public AuthProfileDataBinderImpl(final EntityFactory entityFactory) {
this.entityFactory = entityFactory;
}
@Override
public AuthProfileTO getAuthProfileTO(final AuthProfile authProfile) {
AuthProfileTO authProfileTO = new AuthProfileTO();
authProfileTO.setKey(authProfile.getKey());
authProfileTO.setOwner(authProfile.getOwner());
authProfileTO.getImpersonationAccounts().addAll(authProfile.getImpersonationAccounts());
authProfileTO.getGoogleMfaAuthTokens().addAll(authProfile.getGoogleMfaAuthTokens());
authProfileTO.getGoogleMfaAuthAccounts().addAll(authProfile.getGoogleMfaAuthAccounts());
authProfileTO.getU2FRegisteredDevices().addAll(authProfile.getU2FRegisteredDevices());
authProfileTO.getWebAuthnDeviceCredentials().addAll(authProfile.getWebAuthnDeviceCredentials());
return authProfileTO;
}
@Override
public AuthProfile create(final AuthProfileTO authProfileTO) {
AuthProfile authProfile = entityFactory.newEntity(AuthProfile.class);
authProfile.setOwner(authProfileTO.getOwner());
return update(authProfile, authProfileTO);
}
@Override
public AuthProfile update(final AuthProfile authProfile, final AuthProfileTO authProfileTO) {
authProfile.setImpersonationAccounts(authProfileTO.getImpersonationAccounts());
authProfile.setGoogleMfaAuthTokens(authProfileTO.getGoogleMfaAuthTokens());
authProfile.setGoogleMfaAuthAccounts(authProfileTO.getGoogleMfaAuthAccounts());
authProfile.setU2FRegisteredDevices(authProfileTO.getU2FRegisteredDevices());
authProfile.setWebAuthnDeviceCredentials(authProfileTO.getWebAuthnDeviceCredentials());
return authProfile;
}
}