-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from ened/previous-next
added previous & play actions to AVTransportControl
- Loading branch information
Showing
7 changed files
with
192 additions
and
0 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
support/src/main/java/org/fourthline/cling/support/avtransport/callback/Next.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright (C) 2013 4th Line GmbH, Switzerland | ||
* | ||
* The contents of this file are subject to the terms of either the GNU | ||
* Lesser General Public License Version 2 or later ("LGPL") or the | ||
* Common Development and Distribution License Version 1 or later | ||
* ("CDDL") (collectively, the "License"). You may not use this file | ||
* except in compliance with the License. See LICENSE.txt for more | ||
* information. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
*/ | ||
|
||
package org.fourthline.cling.support.avtransport.callback; | ||
|
||
import org.fourthline.cling.controlpoint.ActionCallback; | ||
import org.fourthline.cling.controlpoint.ControlPoint; | ||
import org.fourthline.cling.model.action.ActionInvocation; | ||
import org.fourthline.cling.model.meta.Service; | ||
import org.fourthline.cling.model.types.UnsignedIntegerFourBytes; | ||
|
||
import java.util.logging.Logger; | ||
|
||
/** | ||
* | ||
* @author Christian Bauer | ||
*/ | ||
public abstract class Next extends ActionCallback { | ||
|
||
private static Logger log = Logger.getLogger(Next.class.getName()); | ||
|
||
protected Next(ActionInvocation actionInvocation, ControlPoint controlPoint) { | ||
super(actionInvocation, controlPoint); | ||
} | ||
|
||
protected Next(ActionInvocation actionInvocation) { | ||
super(actionInvocation); | ||
} | ||
|
||
public Next(Service service) { | ||
this(new UnsignedIntegerFourBytes(0), service); | ||
} | ||
|
||
public Next(UnsignedIntegerFourBytes instanceId, Service service) { | ||
super(new ActionInvocation(service.getAction("Next"))); | ||
getActionInvocation().setInput("InstanceID", instanceId); | ||
} | ||
|
||
@Override | ||
public void success(ActionInvocation invocation) { | ||
log.fine("Execution successful"); | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
support/src/main/java/org/fourthline/cling/support/avtransport/callback/Previous.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright (C) 2013 4th Line GmbH, Switzerland | ||
* | ||
* The contents of this file are subject to the terms of either the GNU | ||
* Lesser General Public License Version 2 or later ("LGPL") or the | ||
* Common Development and Distribution License Version 1 or later | ||
* ("CDDL") (collectively, the "License"). You may not use this file | ||
* except in compliance with the License. See LICENSE.txt for more | ||
* information. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
*/ | ||
|
||
package org.fourthline.cling.support.avtransport.callback; | ||
|
||
import org.fourthline.cling.controlpoint.ActionCallback; | ||
import org.fourthline.cling.controlpoint.ControlPoint; | ||
import org.fourthline.cling.model.action.ActionInvocation; | ||
import org.fourthline.cling.model.meta.Service; | ||
import org.fourthline.cling.model.types.UnsignedIntegerFourBytes; | ||
|
||
import java.util.logging.Logger; | ||
|
||
/** | ||
* | ||
* @author Christian Bauer | ||
*/ | ||
public abstract class Previous extends ActionCallback { | ||
|
||
private static Logger log = Logger.getLogger(Previous.class.getName()); | ||
|
||
protected Previous(ActionInvocation actionInvocation, ControlPoint controlPoint) { | ||
super(actionInvocation, controlPoint); | ||
} | ||
|
||
protected Previous(ActionInvocation actionInvocation) { | ||
super(actionInvocation); | ||
} | ||
|
||
public Previous(Service service) { | ||
this(new UnsignedIntegerFourBytes(0), service); | ||
} | ||
|
||
public Previous(UnsignedIntegerFourBytes instanceId, Service service) { | ||
super(new ActionInvocation(service.getAction("Previous"))); | ||
getActionInvocation().setInput("InstanceID", instanceId); | ||
} | ||
|
||
@Override | ||
public void success(ActionInvocation invocation) { | ||
log.fine("Execution successful"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters