Smack/smack-experimental/src/main/java/org/jivesoftware/smackx/jingle_filetransfer/element/JingleFileTransferElement.java

44 lines
1.4 KiB
Java
Raw Normal View History

2017-06-17 00:26:44 +02:00
/**
*
* Copyright 2017 Paul Schaub
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2017-08-14 13:58:48 +02:00
package org.jivesoftware.smackx.jingle_filetransfer.element;
2017-06-17 00:26:44 +02:00
2017-07-26 16:17:33 +02:00
import java.util.Collections;
2017-06-17 00:26:44 +02:00
import java.util.List;
2017-07-21 23:05:46 +02:00
import org.jivesoftware.smackx.jingle.element.JingleContentDescriptionChildElement;
2017-07-27 23:31:04 +02:00
import org.jivesoftware.smackx.jingle.element.JingleContentDescriptionElement;
2017-08-14 22:15:23 +02:00
import org.jivesoftware.smackx.jingle_filetransfer.component.JingleFileTransfer;
2017-06-17 00:26:44 +02:00
/**
* File element.
*/
2017-07-22 01:01:50 +02:00
public class JingleFileTransferElement extends JingleContentDescriptionElement {
2017-06-17 00:26:44 +02:00
2017-07-26 16:17:33 +02:00
public JingleFileTransferElement(JingleContentDescriptionChildElement payload) {
this(Collections.singletonList(payload));
}
2017-07-22 01:01:50 +02:00
public JingleFileTransferElement(List<JingleContentDescriptionChildElement> payloads) {
2017-06-17 00:26:44 +02:00
super(payloads);
}
@Override
public String getNamespace() {
2017-07-27 17:35:16 +02:00
return JingleFileTransfer.NAMESPACE;
2017-06-17 00:26:44 +02:00
}
}