cn.sliew.carp.module.kubernetes.service.convert.K8sClusterConvert Maven / Gradle / Ivy
/*
* 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 cn.sliew.carp.module.kubernetes.service.convert;
import cn.sliew.carp.framework.common.convert.BaseConvert;
import cn.sliew.carp.module.kubernetes.repository.entity.K8sCluster;
import cn.sliew.carp.module.kubernetes.service.entity.Cluster;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;
//@Mapper
public interface K8sClusterConvert extends BaseConvert {
K8sClusterConvert INSTANCE = Mappers.getMapper(K8sClusterConvert.class);
@Override
K8sCluster toDo(Cluster cluster);
@Override
Cluster toDto(K8sCluster k8sCluster);
}