use of org.jivesoftware.smackx.mediaelement.element.MediaElement in project Smack by igniterealtime.
the class SoftwareInfoIntegrationTest method createSoftwareInfoForm.
private static SoftwareInfoForm createSoftwareInfoForm() throws URISyntaxException {
SoftwareInfoForm.Builder builder = SoftwareInfoForm.getBuilder();
MediaElement mediaElement = MediaElement.builder().addUri(new MediaElement.Uri(new URI("http://example.org"), "test-type")).setHeightAndWidth(16, 16).build();
SoftwareInfoForm softwareInfoForm = builder.setIcon(mediaElement).setOS("Linux").setOSVersion("Debian").setSoftware("Gajim").setSoftwareVersion("1.4.0").build();
return softwareInfoForm;
}
Aggregations