BotFrameworkSkill Class

  • java.lang.Object
    • com.microsoft.bot.builder.skills.BotFrameworkSkill

public class BotFrameworkSkill

Registration for a BotFrameworkHttpProtocol super. Skill endpoint.

Constructor Summary

Constructor Description
BotFrameworkSkill()

Method Summary

Modifier and Type Method and Description
java.lang.String getAppId()

Gets appId of the skill.

java.lang.String getId()

Gets Id of the skill.

java.net.URI getSkillEndpoint()

Gets /api/messages endpoint for the skill.

void setAppId(String withAppId)

Sets appId of the skill.

void setId(String withId)

Sets Id of the skill.

void setSkillEndpoint(URI withSkillEndpoint)

Sets /api/messages endpoint for the skill.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

BotFrameworkSkill

public BotFrameworkSkill()

Method Details

getAppId

public String getAppId()

Gets appId of the skill.

Returns:

the AppId value as a String.

getId

public String getId()

Gets Id of the skill.

Returns:

the Id value as a String.

getSkillEndpoint

public URI getSkillEndpoint()

Gets /api/messages endpoint for the skill.

Returns:

the SkillEndpoint value as a Uri.

setAppId

public void setAppId(String withAppId)

Sets appId of the skill.

Parameters:

withAppId - The AppId value.

setId

public void setId(String withId)

Sets Id of the skill.

Parameters:

withId - The Id value.

setSkillEndpoint

public void setSkillEndpoint(URI withSkillEndpoint)

Sets /api/messages endpoint for the skill.

Parameters:

withSkillEndpoint - The SkillEndpoint value.

Applies to