blob: 7d5f48f574bf404b32888c1dab5e63e8d18b5121 [file] [log] [blame]
/*
* Copyright (c) 2008, Rickard Öberg. All Rights Reserved.
*
* 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 org.qi4j.api.value;
import org.qi4j.api.association.AssociationMixin;
import org.qi4j.api.association.ManyAssociationMixin;
import org.qi4j.api.association.NamedAssociationMixin;
import org.qi4j.api.composite.Composite;
import org.qi4j.api.mixin.Mixins;
import org.qi4j.api.property.Immutable;
/**
* ValueComposites are Composites that has state, and equality is defined from its values and not any identity nor
* instance references.
*
* <ul>
* <li>No Identity</li>
* <li>No Lifecycle</li>
* <li>Immutable</li>
* <li>equals()/hashCode() operates on the Properties</li>
* <li>Can have property and associations methods.</li>
* <li>Can not reference Services</li>
* <li>Can not have @Uses</li>
* </ul>
*/
@Immutable
@Mixins( { AssociationMixin.class, ManyAssociationMixin.class, NamedAssociationMixin.class } )
public interface ValueComposite
extends Composite
{
}