Skip to content

Commit

Permalink
Create biomes island data object.
Browse files Browse the repository at this point in the history
  • Loading branch information
BONNe committed Nov 1, 2021
1 parent 9a8167c commit 94bd3d2
Showing 1 changed file with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
package world.bentobox.biomes.database.objects;


import com.google.gson.annotations.Expose;

import world.bentobox.bentobox.database.objects.DataObject;
import world.bentobox.bentobox.database.objects.Table;


/**
* This class stores necessary information for each Biomes Island Data object.
*/
@Table(name = "BiomesIslandData")
public class BiomesIslandDataObject implements DataObject
{
/**
* Empty constructor for loader.
*/
public BiomesIslandDataObject()
{
// Empty constructor.
}


/**
* @return the uniqueId
*/
@Override
public String getUniqueId()
{
return uniqueId;
}


/**
* @param uniqueId the uniqueId to set
*/
@Override
public void setUniqueId(String uniqueId)
{
this.uniqueId = uniqueId;
}


// ---------------------------------------------------------------------
// Section: Variables
// ---------------------------------------------------------------------


/**
* Unique ID of the island.
*/
@Expose
private String uniqueId;
}

0 comments on commit 94bd3d2

Please sign in to comment.