| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
package net.sourceforge.pebble.webservice; |
| 33 |
|
|
| 34 |
|
import com.sun.syndication.propono.atom.server.AtomHandler; |
| 35 |
|
import com.sun.syndication.propono.atom.server.AtomException; |
| 36 |
|
import com.sun.syndication.propono.atom.common.AtomService; |
| 37 |
|
import com.sun.syndication.feed.atom.Feed; |
| 38 |
|
import com.sun.syndication.feed.atom.Entry; |
| 39 |
|
|
| 40 |
|
import java.io.InputStream; |
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
@author |
| 46 |
|
|
|
|
|
| 0% |
Uncovered Elements: 25 (25) |
Complexity: 13 |
Complexity Density: 1,08 |
|
| 47 |
|
public class PebbleAtomHandler implements AtomHandler { |
| 48 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 49 |
0
|
public String getAuthenticatedUsername() {... |
| 50 |
0
|
return null; |
| 51 |
|
} |
| 52 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 53 |
0
|
public AtomService getIntrospection() throws AtomException {... |
| 54 |
0
|
return null; |
| 55 |
|
} |
| 56 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 57 |
0
|
public Feed getCollection(String[] strings) throws AtomException {... |
| 58 |
0
|
return null; |
| 59 |
|
} |
| 60 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 61 |
0
|
public Entry postEntry(String[] strings, Entry entry) throws AtomException {... |
| 62 |
0
|
return null; |
| 63 |
|
} |
| 64 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 65 |
0
|
public Entry getEntry(String[] strings) throws AtomException {... |
| 66 |
0
|
return null; |
| 67 |
|
} |
| 68 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 69 |
0
|
public Entry putEntry(String[] strings, Entry entry) throws AtomException {... |
| 70 |
0
|
return null; |
| 71 |
|
} |
| 72 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 73 |
0
|
public void deleteEntry(String[] strings) throws AtomException {... |
| 74 |
|
|
| 75 |
|
} |
| 76 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 77 |
0
|
public Entry postMedia(String[] strings, String string, String string1, String string2, InputStream inputStream) throws AtomException {... |
| 78 |
0
|
return null; |
| 79 |
|
} |
| 80 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 81 |
0
|
public Entry putMedia(String[] strings, String string, InputStream inputStream) throws AtomException {... |
| 82 |
0
|
return null; |
| 83 |
|
} |
| 84 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 85 |
0
|
public boolean isIntrospectionURI(String[] strings) {... |
| 86 |
0
|
return false; |
| 87 |
|
} |
| 88 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 89 |
0
|
public boolean isCollectionURI(String[] strings) {... |
| 90 |
0
|
return false; |
| 91 |
|
} |
| 92 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 93 |
0
|
public boolean isEntryURI(String[] strings) {... |
| 94 |
0
|
return false; |
| 95 |
|
} |
| 96 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 97 |
0
|
public boolean isMediaEditURI(String[] strings) {... |
| 98 |
0
|
return false; |
| 99 |
|
} |
| 100 |
|
|
| 101 |
|
} |