com.airlenet.repo.domain.Disabledable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-repo Show documentation
Show all versions of play-repo Show documentation
The Repository of Play Framework.
The newest version!
package com.airlenet.repo.domain;
public interface Disabledable {
boolean isDisabled();
void setDisabled(boolean disabled);
/**
* 标识为已禁用
*/
void markDisabled();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy