Smack/smack-experimental/src/main/java/org/jivesoftware/smackx/jingle_filetransfer/component/AbstractJingleFileRequest.java

31 lines
959 B
Java
Raw Normal View History

2017-07-27 17:35:16 +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.component;
2017-07-27 15:18:18 +02:00
/**
* Created by vanitas on 22.07.17.
*/
2017-08-13 19:44:02 +02:00
public abstract class AbstractJingleFileRequest<D extends JingleFileTransferFile> extends JingleFileTransfer {
2017-07-28 14:02:32 +02:00
2017-08-16 15:36:49 +02:00
AbstractJingleFileRequest(D fileTransferFile) {
2017-07-28 14:02:32 +02:00
super(fileTransferFile);
}
2017-07-27 15:18:18 +02:00
2017-08-13 14:38:53 +02:00
@Override
public abstract D getFile();
2017-07-27 15:18:18 +02:00
}