package org.compass.core.test.component; /** * @author kimchy */ public class SimpleComponentId { private Long id; private String value; /** * @return Returns the value. */ public String getValue() { return value; } /** * @param value The value to set. */ public void setValue(String value) { this.value = value; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } }