All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.dekorate.application.handler.ApplicationHandler Maven / Gradle / Ivy

There is a newer version: 2.0.0.beta8
Show newest version
/**
 * Copyright 2018 The original authors.
 *
 * 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 io.dekorate.application.handler;

import io.dekorate.Handler;
import io.dekorate.Resources;
import io.dekorate.application.config.ApplicationConfig;
import io.dekorate.application.config.Contact;
import io.dekorate.application.config.EditableApplicationConfig;
import io.dekorate.application.config.Icon;
import io.dekorate.application.decorator.AddApplicationResourceDecorator;
import io.dekorate.application.decorator.GroupKindsDecorator;
import io.dekorate.deps.applicationcrd.api.model.ApplicationBuilder;
import io.dekorate.deps.applicationcrd.api.model.ContactData;
import io.dekorate.deps.applicationcrd.api.model.ContactDataBuilder;
import io.dekorate.deps.applicationcrd.api.model.ImageSpec;
import io.dekorate.deps.applicationcrd.api.model.ImageSpecBuilder;
import io.dekorate.deps.applicationcrd.api.model.Link;
import io.dekorate.deps.applicationcrd.api.model.LinkBuilder;
import io.dekorate.kubernetes.config.Configuration;

import java.util.Arrays;
import java.util.stream.Collectors;

public class ApplicationHandler implements Handler {

  private final Resources resources;

  public ApplicationHandler(Resources resources) {
    this.resources = resources;
  }

  @Override
  public int order() {
    return 10000; //It is esential that this will run last.
  }

  @Override
  public void handle(ApplicationConfig config) {
    resources.decorate(new AddApplicationResourceDecorator(config));
    resources.decorate(new GroupKindsDecorator());
  }

  @Override
  public boolean canHandle(Class config) {
    return ApplicationConfig.class.equals(config) || EditableApplicationConfig.class.equals(config);
  }

  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy