Package com.impetus.client.couchdb.entities

Examples of com.impetus.client.couchdb.entities.CouchDBTokenClient


    private void assertOnTokenScroll()
    {
        CouchDBToken token1 = new CouchDBToken();
        token1.setId("tokenId1");
        token1.setTokenName("tokenName1");
        CouchDBTokenClient client = new CouchDBTokenClient();
        client.setClientName("tokenClient1");
        client.setId("tokenClientId");
        token1.setClient(client);

        CouchDBToken token2 = new CouchDBToken();
        token2.setId("tokenId2");
        token2.setTokenName("tokenName2");
View Full Code Here

TOP

Related Classes of com.impetus.client.couchdb.entities.CouchDBTokenClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.