
core.DevLoader Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2014 Objectos, Fábrica de Software LTDA.
*
* 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 br.com.objectos.rio.core;
import br.com.objectos.way.etc.EtcLoader;
import br.com.objectos.way.etc.Mapping;
/**
* @author [email protected] (Marcio Endo)
*/
public enum DevLoader implements EtcLoader {
INSTANCE;
@Override
public Dev load(Mapping map) {
return new DevBuilder(map).build();
}
private class DevBuilder implements Dev.Builder {
private final Mapping map;
public DevBuilder(Mapping map) {
this.map = map;
}
@Override
public Dev build() {
return new Dev(this);
}
@Override
public int getUid() {
return map.getInt("uid");
}
@Override
public String getLogin() {
return map.getString("login");
}
@Override
public String getName() {
return map.getString("name");
}
@Override
public String getEmail() {
return map.getString("email");
}
@Override
public boolean isActive() {
return map.getBoolean("active");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy