Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1081 → Rev 1082

/hostadmiral/trunk/src/ak/hostadmiral/core/model/PasswordStoreAbstract.java
112,4 → 112,15
theClone.password = password;
return theClone;
}
 
public boolean getReversable()
{
return false;
}
 
public String getOriginalPassword()
throws UnsupportedOperationException
{
throw new UnsupportedOperationException("Not able to restore original password");
}
}