All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.anosite.gen.asuserdata.data.RoleDefDocument Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** RoleDefDocument.java                                                     ***
 *** generated by AnoSiteGenerator (ASG), Version: 2.6.3                      ***
 *** Copyright (C) 2005 - 2010 Anotheria.net, www.anotheria.net               ***
 *** All Rights Reserved.                                                     ***
 ********************************************************************************
 *** Don't edit this code, if you aren't sure                                 ***
 *** that you do exactly know what you are doing!                             ***
 *** It's better to invest time in the generator, as into the generated code. ***
 ********************************************************************************
 */

package net.anotheria.anosite.gen.asuserdata.data;

import net.anotheria.asg.data.AbstractASGDocument;
import net.anotheria.util.crypt.MD5Util;
import net.anotheria.util.sorter.IComparable;
import net.anotheria.util.BasicComparable;


public class RoleDefDocument extends AbstractASGDocument implements RoleDef, IComparable{

	public RoleDefDocument() {
		super("");
	}

	public RoleDefDocument(String id){
		super(id);
	}

	public RoleDefDocument(RoleDefDocument toClone){
		super(toClone);
	}

	RoleDefDocument(RoleDefBuilder builder){
		super("");
		setName(builder.name);
	}

	public String getName(){
		return getString(PROP_NAME);
	}

	public void setName(String value){
		setString(PROP_NAME, value);
	}


	public String toString(){
		String ret = "RoleDef ";
		ret += "["+getId()+"] ";
		ret += "name: "+getName();
		return ret;
	}


	public int compareTo(RoleDef comparable){
		return compareTo(comparable, RoleDefSortType.SORT_BY_DEFAULT);
	}

	public int compareTo(IComparable anotherComparable, int method){
		RoleDefDocument anotherDoc = (RoleDefDocument) anotherComparable;
		switch(method){
			case RoleDefSortType.SORT_BY_ID:
				return BasicComparable.compareString(getId(), anotherDoc.getId());
			case RoleDefSortType.SORT_BY_NAME:
				return BasicComparable.compareString(getName(), anotherDoc.getName());
			default:
				throw new RuntimeException("Sort method "+method+" is not supported.");
		}
	}

	public String getDefinedName(){
		return "RoleDef";
	}

	public String getDefinedParentName(){
		return "ASUserData";
	}

	public String getFootprint(){
		StringBuilder footprint = new StringBuilder();
		footprint.append(getName());
		return MD5Util.getMD5Hash(footprint);
	}

	public boolean equals(Object o){
		return o == this || ((o instanceof RoleDefDocument) && ((RoleDefDocument)o).getId().equals(getId()));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy