org.xpertss:sdp

Session Description Protocol implementation

Лицензия

Лицензия

Группа

Группа

org.xpertss
Идентификатор

Идентификатор

sdp
Последняя версия

Последняя версия

1.1.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

org.xpertss:sdp
Session Description Protocol implementation
Ссылка на сайт

Ссылка на сайт

https://github.com/cfloersch/sdp
Система контроля версий

Система контроля версий

https://github.com/cfloersch/sdp

Скачать sdp

Имя Файла Размер
sdp-1.1.2.pom
sdp-1.1.2.jar 61 KB
sdp-1.1.2-sources.jar 35 KB
sdp-1.1.2-javadoc.jar 150 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.xpertss/sdp/ -->
<dependency>
    <groupId>org.xpertss</groupId>
    <artifactId>sdp</artifactId>
    <version>1.1.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.xpertss/sdp/
implementation 'org.xpertss:sdp:1.1.2'
// https://jarcasting.com/artifacts/org.xpertss/sdp/
implementation ("org.xpertss:sdp:1.1.2")
'org.xpertss:sdp:jar:1.1.2'
<dependency org="org.xpertss" name="sdp" rev="1.1.2">
  <artifact name="sdp" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.xpertss', module='sdp', version='1.1.2')
)
libraryDependencies += "org.xpertss" % "sdp" % "1.1.2"
[org.xpertss/sdp "1.1.2"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.xpertss : stdlib jar 1.1.0

test (2)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.6
org.mockito : mockito-all jar 1.8.2

Модули Проекта

Данный проект не имеет модулей.

sdp

Session Description Protocol implementation

An example of parsing a session description read from an input stream

SessionParser parser = new SessionParser();
SessionDescription sdp = parser.parse(inputstream);

Here is an example of building a session description

OriginBuilder origin = OriginBuilder.create();
origin.setUsername("joe").setSessionId(200);
SessionBuilder builder = SessionBuilder.create();
builder.setVersion(1).setOrigin(origin.build());
builder.setSessionName("Session Name").setInfo("My Info");

SessionDescription sdpOne = builder.build();

builder.setOrigin(OriginBuilder.create(builder.getOrigin()).setSessionId(201).build());
SessionDescription sdpTwo = builder.build();

builder.addEmail("joe@whatever.com").addEmail("fred@none.com");
SessionDescription sdpThree = builder.build();

For more info on Session Description Protocol please visit:

Версии библиотеки

Версия
1.1.2
1.1.1