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

com.oneops.api.ResourceObject Maven / Gradle / Ivy

There is a newer version: 5.0.25
Show newest version
package com.oneops.api;

import java.util.Map;

public class ResourceObject {
	private Map attributes;
	private Map ownerProps;
	private Map properties;
	
	public Map getProperties() {
		return properties;
	}
	public void setProperties(Map properties) {
		this.properties = properties;
	}
	public Map getOwnerProps() {
		return ownerProps;
	}
	public void setOwnerProps(Map ownerProps) {
		this.ownerProps = ownerProps;
	}
	public Map getAttributes() {
		return attributes;
	}
	public void setAttributes(Map attributes) {
		this.attributes = attributes;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy