1 15 package org.apache.hivemind.impl; 16 17 import org.apache.hivemind.Location; 18 19 22 public class SchemaAssignment extends BaseLocatable 23 { 24 private String _configurationId; 25 private String _schemaId; 26 27 public SchemaAssignment(String configurationId, String schemaId, Location location) 28 { 29 super(location); 30 _configurationId = configurationId; 31 _schemaId = schemaId; 32 } 33 34 37 public String getConfigurationId() 38 { 39 return _configurationId; 40 } 41 42 public void setConfigurationId(String string) 43 { 44 _configurationId = string; 45 } 46 47 50 public String getSchemaId() 51 { 52 return _schemaId; 53 } 54 55 public void setSchemaId(String schemaId) 56 { 57 _schemaId = schemaId; 58 } 59 60 } 61 | Popular Tags |