Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
*/
@SectionName( IndyKojiConfig.SECTION_NAME )
@ApplicationScoped
public class IndyKojiConfig

Check failure on line 54 in addons/koji/common/src/main/java/org/commonjava/indy/koji/conf/IndyKojiConfig.java

View workflow job for this annotation

GitHub Actions / verify with maven

org.commonjava.indy.koji.conf.IndyKojiConfig is not abstract and does not override abstract method getKrbService() in com.redhat.red.build.koji.config.KojiConfig

Check failure on line 54 in addons/koji/common/src/main/java/org/commonjava/indy/koji/conf/IndyKojiConfig.java

View workflow job for this annotation

GitHub Actions / verify with maven

org.commonjava.indy.koji.conf.IndyKojiConfig is not abstract and does not override abstract method getKrbService() in com.redhat.red.build.koji.config.KojiConfig
extends MapSectionListener
implements IndyConfigInfo, KojiConfig
{
Expand Down Expand Up @@ -228,25 +228,12 @@
return null;
}

@Override
public String getKrbPassword()
{
return null;
}

@Override
public String getKrbPrincipal()
{
return null;
}

@Override
public String getKrbService()
{
return null;
}
// TODO: END: Implement kerberos support...

public Integer getMaxConnections()
{
return maxConnections == null ? DEFAULT_MAX_CONNECTIONS : maxConnections;
Expand Down
Loading