blob: c9fb2fcb13b187c10c1f9033ce3f2ac426c2e904 [file] [log] [blame]
/*
* Copyright (c) 2008, Edward Yakop. All Rights Reserved.
* Copyright (c) 2009, Niclas Hedhman. 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.apache.zest.envisage.school.domain.person.initialdata;
import org.apache.zest.api.activation.ActivatorAdapter;
import org.apache.zest.api.activation.Activators;
import org.apache.zest.api.entity.EntityBuilder;
import org.apache.zest.api.injection.scope.Structure;
import org.apache.zest.api.mixin.Mixins;
import org.apache.zest.api.service.ServiceComposite;
import org.apache.zest.api.service.ServiceReference;
import org.apache.zest.api.unitofwork.UnitOfWork;
import org.apache.zest.api.unitofwork.UnitOfWorkFactory;
import org.apache.zest.envisage.school.domain.person.Person;
import org.apache.zest.envisage.school.domain.person.assembly.PersonEntity;
@Mixins( SamplePersonInitialData.SamplePersonBootstrapMixin.class )
@Activators( SamplePersonInitialData.Activator.class )
public interface SamplePersonInitialData
extends ServiceComposite
{
String EDWARD = "edward";
String NICLAS = "niclas";
String RICKARD = "rickard";
void insertInitialData()
throws Exception;
class Activator
extends ActivatorAdapter<ServiceReference<SamplePersonInitialData>>
{
@Override
public void afterActivation( ServiceReference<SamplePersonInitialData> activated )
throws Exception
{
activated.get().insertInitialData();
}
}
public abstract class SamplePersonBootstrapMixin
implements SamplePersonInitialData
{
private static final String[][] DATAS =
{
{
EDWARD, "Edward", "Yakop"
},
{
NICLAS, "Niclas", "Hedhman"
},
{
RICKARD, "Rickard", "Öberg"
}
};
@Structure
private UnitOfWorkFactory uowf;
@Override
public void insertInitialData()
throws Exception
{
UnitOfWork uow = uowf.currentUnitOfWork();
for( String[] data : DATAS )
{
String personId = data[ 0];
String firstName = data[ 1];
String lastName = data[ 2];
createPerson( uow, personId, firstName, lastName );
}
uow.complete();
}
private void createPerson( UnitOfWork uow, String personId, String firstName, String lastName )
{
EntityBuilder<Person> person = uow.newEntityBuilder( Person.class, personId );
PersonEntity.PersonState state = person.instanceFor( PersonEntity.PersonState.class );
state.firstName().set( firstName );
state.lastName().set( lastName );
person.newInstance();
}
}
}