Hi, so I have provided my code structures, just in case my POJOExample.java 
looks as below; this is used for key-value setting for persistence setting 
for Cassandra. Thanks once again! 

POJOExample.java 
public class POJOExample implements Serializable{ 
    

    @QuerySqlField(index=true, descending = true, 
orderedGroups={@QuerySqlField.Group(name = "sample_idx", order = 0)}) 
    private String id; 
    
    @QuerySqlField(orderedGroups={@QuerySqlField.Group(name = "sample_idx", 
order = 1)}) 
    private String name; 
    
    
    public ClientMatchRecord(String name, String id) { 
        this.id = id; 
        this.name = name; 

    } 

    public String getid() { 
        return id; 
    } 

    public void setid(String id) { 
        this.id = id; 
    } 

    public String getname() { 
        return name; 
    } 

    public void setname(String name) { 
        this.name = name; 
    } 

    
} 



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to