Skip to content

Commit

Permalink
uses plain string due to jackson problems
Browse files Browse the repository at this point in the history
  • Loading branch information
gkiomour committed Jan 26, 2024
1 parent 8f56c4a commit a5e5bf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snapi-frontend/src/main/scala/raw/creds/api/Credentials.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
package raw.creds.api

import com.fasterxml.jackson.annotation.JsonSubTypes.{Type => JsonType}
import com.fasterxml.jackson.annotation.{JsonProperty, JsonSubTypes, JsonTypeInfo}
import com.fasterxml.jackson.annotation.{JsonSubTypes, JsonTypeInfo}
import raw.utils.Uid

import java.time.Instant
Expand Down Expand Up @@ -146,7 +146,7 @@ final case class SnowflakeCredential(
val port = None
}

case class ExternalConnectorCredentialId(name: String, connectorType: AbstractConnectorType)
case class ExternalConnectorCredentialId(name: String, connectorType: String)

trait AbstractConnectorType {
def repr: String
Expand Down

0 comments on commit a5e5bf9

Please sign in to comment.