You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
562 B
37 lines
562 B
package com.redhat.pctsec.model; |
|
|
|
import jakarta.persistence.Entity; |
|
import org.eclipse.microprofile.openapi.annotations.media.Schema; |
|
|
|
import java.net.URI; |
|
import java.net.URL; |
|
|
|
|
|
@Entity |
|
public class BrewBuild extends BuildType { |
|
|
|
public BrewBuild(String buildRef) { |
|
super(buildRef); |
|
} |
|
|
|
public BrewBuild() { |
|
super(); |
|
} |
|
|
|
@Override |
|
public URI SCMURL() { |
|
return null; |
|
} |
|
|
|
@Override |
|
public URL URL() { |
|
return null; |
|
} |
|
|
|
@Override |
|
public String revision() { |
|
return null; |
|
} |
|
|
|
|
|
}
|
|
|