Introduce RESTCONF Client API 62/4062/5
authorTony Tkacik <ttkacik@cisco.com>
Wed, 8 Jan 2014 10:07:34 +0000 (11:07 +0100)
committerRobert Varga <rovarga@cisco.com>
Fri, 10 Jan 2014 15:46:18 +0000 (16:46 +0100)
commit46ad15397dbfb772d330f8c07eccb5f6256e31f5
treed05e87262eff147030d6fec4476586715c70ae76
parent63b127de60002c600ecff4d90b099853762120a3
Introduce RESTCONF Client API

Change-Id: Ibc90532eea3f200acf726a7f8eabae4ac6877aa5
Signed-off-by: Tony Tkacik <ttkacik@cisco.com>
Signed-off-by: Robert Varga <rovarga@cisco.com>
18 files changed:
pom.xml
restconf/pom.xml
restconf/restconf-client-api/pom.xml [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/RestconfClientContext.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/RestconfClientContextFactory.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/UnsupportedProtocolException.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/data/ConfigurationDatastore.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/data/Datastore.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/data/DefaultRetrievalStrategy.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/data/LimitedDepthRetrievalStrategy.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/data/OperationalDatastore.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/data/RetrievalStrategy.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/event/EventReplay.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/event/EventStreamContext.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/event/EventStreamInfo.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/event/EventStreamReplay.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/event/ListenableEventStreamContext.java [new file with mode: 0644]
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/rpc/RpcServiceContext.java [new file with mode: 0644]