You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Resource.java 162B

123456789101112131415
  1. package testing;
  2. public class Resource {
  3. private final String id;
  4. public Resource(String id){
  5. this.id = id;
  6. }
  7. public String getId(){
  8. return id;
  9. }
  10. }