veyron,veyron2: replace Veyron name by Object name everywhere.
Change-Id: I2635a5b19123bffca3743095483b69f1d4e288b0
diff --git a/services/mgmt/repository/repository.vdl b/services/mgmt/repository/repository.vdl
index 5ef30d9..bbdb35d 100644
--- a/services/mgmt/repository/repository.vdl
+++ b/services/mgmt/repository/repository.vdl
@@ -15,11 +15,11 @@
type Application interface {
public.Application
// Put adds the given tuple of application version (specified
- // through the veyron name suffix) and application envelope to all
+ // through the object name suffix) and application envelope to all
// of the given application profiles.
Put(Profiles []string, Envelope application.Envelope) error {security.WriteLabel}
// Remove removes the application envelope for the given profile
- // name and application version (specified through the veyron name
+ // name and application version (specified through the object name
// suffix). If no version is specified as part of the suffix, the
// method removes all versions for the given profile.
//
@@ -33,12 +33,12 @@
type Profile interface {
public.Profile
// Specification returns the profile specification for the profile
- // identified through the veyron name suffix.
+ // identified through the object name suffix.
Specification() (profile.Specification, error) {security.ReadLabel}
// Put sets the profile specification for the profile identified
- // through the veyron name suffix.
+ // through the object name suffix.
Put(Specification profile.Specification) error {security.WriteLabel}
// Remove removes the profile specification for the profile
- // identified through the veyron name suffix.
+ // identified through the object name suffix.
Remove() error {security.WriteLabel}
}