com.woorea.openstack.nova.model.Metadata Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (C) 2016 AT&T Intellectual Property. All rights reserved. This code is licensed under the Apache License, Version 2.0
*******************************************************************************/
package com.woorea.openstack.nova.model;
import java.util.Map;
public class Metadata {
private Map metadata;
/**
* @return the metadata
*/
public Map getMetadata() {
return metadata;
}
/**
* Set the metadata
* @param metadata
*/
public void setMetadata(Map metadata) {
this.metadata = metadata;
}
}