Предположим, у вас есть эти классы.
public class Source {
private String password;
//getters and setters
}
public class Destination {
private byte[] password;
//getters and setters
}
Вы можете создать собственный картограф.
@Mapper
public abstract class MyMapper {
public Destination sourceToDest(Source source) {
Destination dest = new Destination();
dest.setPassword(source.getPassword().getBytes());
return dest;
}
}
Тогда
MyMapperImpl mapper = new MyMapperImpl();
Destination dest = mapper.sourceToDest(source);