View Javadoc

1   package com.germinus.merlin.model;
2   
3   public abstract class Resource {
4   
5   	protected long id;
6   	protected String name;
7   	protected String description;
8   	protected ResourceContainer resourceContainer;
9   	
10  }