All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cloudboost.CloudRole Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package io.cloudboost;

import io.cloudboost.beans.CBResponse;
import io.cloudboost.json.JSONArray;
import io.cloudboost.json.JSONException;
import io.cloudboost.json.JSONObject;
import io.cloudboost.util.CBParser;

import java.util.ArrayList;

/**
 * 
 * @author cloudboost
 *
 */
public class CloudRole extends CloudObject{
	
	private CloudRole thisObj;
	public CloudRole(String roleName){
		super("Role");
		try{
		this.document.put("_type", "role");
		this.document.put("name", roleName);
		JSONArray col = new JSONArray(this.document.get("_modifiedColumns").toString());
		ArrayList modified = new ArrayList();
		for(int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy