mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-05 11:56:29 +08:00
20 lines
466 B
Java
20 lines
466 B
Java
package com.wisemapping.dao;
|
|
|
|
import com.wisemapping.model.Label;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
|
|
|
|
public class LabelManagerImpl extends HibernateDaoSupport
|
|
implements LabelManager {
|
|
|
|
@Override
|
|
public void addLabel(Label label) {
|
|
saveLabel(label);
|
|
}
|
|
|
|
@Override
|
|
public void saveLabel(@NotNull Label label) {
|
|
getSession().save(label);
|
|
}
|
|
}
|