Skip to content
Snippets Groups Projects
Commit d6b1aa8a authored by buczekp's avatar buczekp
Browse files

[LMS-1818] beta version of adaptors (only sample adaptor + properties)

SVN: 18320
parent bb96abd2
No related branches found
No related tags found
No related merge requests found
/*
* Copyright 2010 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.generic.client.web.server.calculator.dynamic;
import ch.systemsx.cisd.openbis.generic.shared.dto.EntityPropertyPE;
/**
* Simple {@link IEntityPropertyAdaptor} implementation
*
* @author Piotr Buczek
*/
public class BasicPropertyAdaptor implements IEntityPropertyAdaptor
{
private final String code;
private final String value;
private final EntityPropertyPE propertyPE;
public BasicPropertyAdaptor(String code, String value, EntityPropertyPE propertyPE)
{
this.code = code;
this.value = value;
this.propertyPE = propertyPE;
}
public String getPropertyTypeCode()
{
return code;
}
public String getValueAsString()
{
return value;
}
public EntityPropertyPE getPropertyPE()
{
return propertyPE;
}
}
/*
* Copyright 2010 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.generic.client.web.server.calculator.dynamic;
/**
* @author Piotr Buczek
*/
public class DynamicPropertyCalculator
{
// TODO
}
/*
* Copyright 2010 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.generic.client.web.server.calculator.dynamic;
import java.util.Collection;
/**
* Interface implemented by all entity adaptors
*
* @author Piotr Buczek
*/
// TODO 2010-10-15, Piotr Buczek: what naming convention should be used for DTOs used in Jython
public interface IEntityAdaptor
{
/** Returns the code. */
public String getCode();
/** Returns the property by code of the property type. */
public IEntityPropertyAdaptor getPropertyByCode(String propertyTypeCode);
/** Returns the property value by code of the property type. */
public String getPropertyValueByCode(String propertyTypeCode);
/** Returns collection of properties of the entity */
public Collection<IEntityPropertyAdaptor> getProperties();
}
/*
* Copyright 2010 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.generic.client.web.server.calculator.dynamic;
/**
* Interface implemented by all entity properties
*
* @author Piotr Buczek
*/
public interface IEntityPropertyAdaptor
{
/** Returns the code of property type. */
public String getPropertyTypeCode();
/** Returns the property value as string. */
public String getValueAsString();
}
/*
* Copyright 2010 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.generic.client.web.server.calculator.dynamic;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import ch.systemsx.cisd.openbis.generic.shared.dto.SamplePE;
import ch.systemsx.cisd.openbis.generic.shared.dto.SamplePropertyPE;
/**
* {@link IEntityAdaptor} implementation for {@link SamplePE}.
*
* @author Piotr Buczek
*/
public class SampleAdaptor implements IEntityAdaptor
{
private final Map<String, IEntityPropertyAdaptor> propertiesByCode =
new HashMap<String, IEntityPropertyAdaptor>();
private final String code;
private final SamplePE samplePE;
SampleAdaptor(SamplePE samplePE)
{
this.samplePE = samplePE;
this.code = samplePE.getCode();
for (SamplePropertyPE property : samplePE.getProperties())
{
final String propertyTypeCode =
property.getEntityTypePropertyType().getPropertyType().getCode();
final String value;
if (property.getMaterialValue() != null)
{
value = property.getMaterialValue().getCode();
} else if (property.getVocabularyTerm() != null)
{
value = property.getVocabularyTerm().getCode();
} else
{
value = property.getValue();
}
propertiesByCode.put(propertyTypeCode, new BasicPropertyAdaptor(propertyTypeCode,
value, property));
}
}
public SamplePE getSamplePE()
{
return samplePE;
}
public String getCode()
{
return code;
}
public IEntityPropertyAdaptor getPropertyByCode(String propertyTypeCode)
{
return propertiesByCode.get(propertyTypeCode);
}
public String getPropertyValueByCode(String propertyTypeCode)
{
return propertiesByCode.get(propertyTypeCode).getValueAsString();
}
public Collection<IEntityPropertyAdaptor> getProperties()
{
return propertiesByCode.values();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment