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

io.cloudshiftdev.awscdk.services.codebuild.ISource.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package io.cloudshiftdev.awscdk.services.codebuild

import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import io.cloudshiftdev.constructs.Construct
import kotlin.Boolean
import kotlin.String

/**
 * The abstract interface of a CodeBuild source.
 *
 * Implemented by `Source`.
 */
public interface ISource {
  /**
   *
   */
  public fun badgeSupported(): Boolean

  /**
   * @param scope 
   * @param project 
   */
  public fun bind(scope: Construct, project: IProject): SourceConfig

  /**
   *
   */
  public fun identifier(): String? = unwrap(this).getIdentifier()

  /**
   *
   */
  public fun type(): String

  private class Wrapper(
    cdkObject: software.amazon.awscdk.services.codebuild.ISource,
  ) : CdkObject(cdkObject),
      ISource {
    /**
     *
     */
    override fun badgeSupported(): Boolean = unwrap(this).getBadgeSupported()

    /**
     * @param scope 
     * @param project 
     */
    override fun bind(scope: Construct, project: IProject): SourceConfig =
        unwrap(this).bind(scope.let(Construct.Companion::unwrap),
        project.let(IProject.Companion::unwrap)).let(SourceConfig::wrap)

    /**
     *
     */
    override fun identifier(): String? = unwrap(this).getIdentifier()

    /**
     *
     */
    override fun type(): String = unwrap(this).getType()
  }

  public companion object {
    internal fun wrap(cdkObject: software.amazon.awscdk.services.codebuild.ISource): ISource =
        CdkObjectWrappers.wrap(cdkObject) as? ISource ?: Wrapper(cdkObject)

    internal fun unwrap(wrapped: ISource): software.amazon.awscdk.services.codebuild.ISource =
        (wrapped as CdkObject).cdkObject as software.amazon.awscdk.services.codebuild.ISource
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy