joestrhq/AcronisFSS

View on GitHub
src/main/java/at/or/joestr/acronisfss/api/structures/Share.java

Summary

Maintainability
A
1 hr
Test Coverage
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package at.or.joestr.acronisfss.api.structures;

import java.util.UUID;

/**
 *
 * @author joestr
 */
public class Share {
  private UUID uuid;
  private String name;

  public Share(UUID uuid, String name) {
    this.uuid = uuid;
    this.name = name;
  }

  public UUID getUuid() {
    return uuid;
  }

  public void setUuid(UUID uuid) {
    this.uuid = uuid;
  }

  public String getName() {
    return name;
  }

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