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

com.github.libgraviton.workerbase.model.file.MetadataAddProperty Maven / Gradle / Ivy

package com.github.libgraviton.workerbase.model.file;

/**
 * 

MetadataAddProperty class.

* * @author Samuel Ackermann * @version $Id: $Id */ public class MetadataAddProperty { public String name; public String value; /** *

Getter for the field name.

* * @return a {@link java.lang.String} object. */ public String getName() { return this.name; } /** *

Setter for the field name.

* * @param name a {@link java.lang.String} object. */ public void setName(String name) { this.name = name; } /** *

Getter for the field value.

* * @return a {@link java.lang.String} object. */ public String getValue() { return this.value; } /** *

Setter for the field value.

* * @param value a {@link java.lang.String} object. */ public void setValue(String value) { this.value = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy